HTMLProgressElement.labels
The HTMLProgressElement.labels
read-only property returns
a NodeList
of the <label>
elements associated with the
<progress>
element.
Syntax
var labelElements = progress.labels;
Return value
A NodeList
containing the <label>
elements associated
with the <progress>
element.
Example
HTML
<label id="label1" for="test">Label 1</label>
<progress id="test" value="70" max="100">70%</progress>
<label id="label2" for="test">Label 2</label>
JavaScript
window.addEventListener("DOMContentLoaded", function() {
const progress = document.getElementById("test");
for(var i = 0; i < progress.labels.length; i++) {
console.log(progress.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