W3cubDocs

/DOM

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 compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support ? No 56 ? ? ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support ? ? No 56 ? ? ?

© 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/labels