W3cubDocs

/DOM

HTMLButtonElement.labels

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

Syntax

var labelElements = button.labels;

Return value

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

Example

HTML

<label id="label1" for="test">Label 1</label>
<button id="test">Button</button>
<label id="label2" for="test">Label 2</label>

JavaScript

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

Specifications

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

Browser compatibilityUpdate compatibility data on GitHub

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

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