The HTML <meter> elements expose the HTMLMeterElement interface, which provides special properties and methods (beyond the HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of <meter> elements.
Also inherits properties from its parent, HTMLElement.
HTMLMeterElement.highA double representing the value of the high boundary, reflecting the high attribute.
HTMLMeterElement.lowA double representing the value of the low boundary, reflecting the low attribute.
HTMLMeterElement.maxA double representing the maximum value, reflecting the max attribute.
HTMLMeterElement.minA double representing the minimum value, reflecting the min attribute.
HTMLMeterElement.optimumA double representing the optimum, reflecting the optimum attribute.
HTMLMeterElement.valueA double representing the current value, reflecting the value attribute.
HTMLMeterElement.labels Read onlyA NodeList of <label> elements that are associated with the element.
This interface does not implement any specific methods but inherits methods from its parent, HTMLElement.
<meter>