HTMLOutputElement.labels
The HTMLOutputElement.labels
read-only property returns a
NodeList
of the <label>
elements associated with the
<output>
element.
Syntax
var labelElements = output.labels;
Return value
A NodeList
containing the <label>
elements associated
with the <output>
element.
Example
HTML
<label id="label1" for="test">Label 1</label>
<output id="test">Output</output>
<label id="label2" for="test">Label 2</label>
JavaScript
window.addEventListener("DOMContentLoaded", function() {
const output = document.getElementById("test");
for(var i = 0; i < output.labels.length; i++) {
console.log(output.labels[i].textContent); // "Label 1" and "Label 2"
}
});
Specifications
Specification |
---|
HTML Standard # dom-lfe-labels-dev |
Browser compatibility
BCD tables only load in the browser