Web/API/HTMLMeterElement/labels

From Get docs


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 StandardThe definition of 'labels' in that specification. Living Standard No change
HTML5The definition of 'labels' in that specification. Recommendation Initial definition

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
labels Chrome

Full support Yes

Edge

Full support 18

Firefox

Full support 56

IE

No support No

Opera

Full support Yes

Safari

Full support Yes

WebView Android

?

Chrome Android

?

Firefox Android

Full support 56

Opera Android

?

Safari iOS

?

Samsung Internet Android

?

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown