HTMLMeterElement
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since November 2015.
The HTML<meter> elements expose theHTMLMeterElement interface, which provides special properties and methods (beyond theHTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of<meter> elements.
In this article
Instance properties
Also inherits properties from its parent,HTMLElement.
HTMLMeterElement.highA
doublerepresenting the value of the high boundary, reflecting thehighattribute.HTMLMeterElement.lowA
doublerepresenting the value of the low boundary, reflecting thelowattribute.HTMLMeterElement.maxA
doublerepresenting the maximum value, reflecting themaxattribute.HTMLMeterElement.minA
doublerepresenting the minimum value, reflecting theminattribute.HTMLMeterElement.optimumA
doublerepresenting the optimum, reflecting theoptimumattribute.HTMLMeterElement.valueA
doublerepresenting the current value, reflecting thevalueattribute.HTMLMeterElement.labelsRead onlyA
NodeListof<label>elements that are associated with the element.
Instance methods
This interface does not implement any specific methods but inherits methods from its parent,HTMLElement.
Specifications
| Specification |
|---|
| HTML> # htmlmeterelement> |
Browser compatibility
See also
- The HTML element implementing this interface:
<meter>