HTMLMeterElement.labels

The HTMLMeterElement.labels read-only property returns a NodeList of the <label> elements associated with the <meter> element.

Syntax

var labelElements = meter.labels;

Return value

A NodeList containing the <label> elements associated with the <meter> element.

Example

HTML

<label id="label1" for="test">Label 1</label>
<meter id="test" min="0" max="100" value="70">70</meter>
<label id="label2" for="test">Label 2</label>

JavaScript

window.addEventListener("DOMContentLoaded", function() {
  const meter = document.getElementById("test");
  for(var i = 0; i < meter.labels.length; i++) {
    console.log(meter.labels[i].textContent); // "Label 1" and "Label 2"
  }
});

Specifications

Specification Status Comment
HTML Living Standard
The definition of 'labels' in that specification.
Living Standard No change
HTML5
The definition of 'labels' in that specification.
Recommendation Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
labelsChrome Full support YesEdge Full support 18Firefox Full support 56IE ? Opera Full support YesSafari Full support YesWebView Android ? Chrome Android ? Firefox Android Full support 56Opera Android ? Safari iOS ? Samsung Internet Android ?

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown