W3cubDocs

/DOM

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.

Properties

Also inherits properties from its parent, HTMLElement.

HTMLMeterElement.high
A double representing the value of the high boundary, reflecting the high attribute.
HTMLMeterElement.low
A double representing the value of the low boundary, reflecting the lowattribute.
HTMLMeterElement.max
A double representing the maximum value, reflecting the max attribute.
HTMLMeterElement.min
A double representing the minimum value, reflecting the min attribute.
HTMLMeterElement.optimum
A double representing the optimum, reflecting the optimum attribute.
HTMLMeterElement.value
A double representing the currrent value, reflecting the value attribute.
HTMLMeterElement.labelsRead only
A NodeList of <label> elements that are associated with the element.

Methods

This interface does not implement any specific methods but inherits methods from its parent, HTMLElement.

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 6 Yes 16 10 11 5
high 6 13 16 10 11 5
low 6 13 16 10 11 5
max 6 13 16 10 11 5
min 6 13 16 10 11 5
optimum 6 13 16 10 11 5
value 6 13 16 10 11 5
labels ? No 56 ? ? ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support ? ? Yes 16 11 ? ?
high ? ? Yes 16 11 ? ?
low ? ? Yes 16 11 ? ?
max ? ? Yes 16 11 ? ?
min ? ? Yes 16 11 ? ?
optimum ? ? Yes 16 11 ? ?
value ? ? Yes 16 11 ? ?
labels ? ? No 56 ? ? ?

See also

  • The HTML element implementing this interface: <meter>

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement