HTMLMeterElement
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.
Instance properties
Also inherits properties from its parent, HTMLElement
.
HTMLMeterElement.high
-
A
double
representing the value of the high boundary, reflecting thehigh
attribute. HTMLMeterElement.low
-
A
double
representing the value of the low boundary, reflecting thelow
attribute. HTMLMeterElement.max
-
A
double
representing the maximum value, reflecting themax
attribute. HTMLMeterElement.min
-
A
double
representing the minimum value, reflecting themin
attribute. HTMLMeterElement.optimum
-
A
double
representing the optimum, reflecting theoptimum
attribute. HTMLMeterElement.value
-
A
double
representing the current value, reflecting thevalue
attribute. HTMLMeterElement.labels
Read only-
A
NodeList
of<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 Standard # htmlmeterelement |
Browser compatibility
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<meter>