HTML Checking for Large Sites
Rocket Validator automatically checks your pages on the W3C Validator.
The “aria-labelledby” attribute must point to an element in the same document.
The aria-labelledby
attribute establishes relationships between objects and their label(s), and its value should be one or more element IDs. It should reference an existing ID on the same document, but that id
was not found.
Learn more:
Related W3C validator issues
labelledby
is not a valid attribute for the <svg>
element. Perhaps you meant aria-labelledby
?
The aria-labelledby
attribute establishes relationships between objects and their label(s), and its value should be one or more element IDs, which refer to elements that have the text needed for labeling.
Example:
<div id="myBillingId">Billing</div>
<div>
<div id="myNameId">Name</div>
<input type="text" aria-labelledby="myBillingId myNameId"/>
</div>
<div>
<div id="myAddressId">Address</div>
<input type="text" aria-labelledby="myBillingId myAddressId"/>
</div>
Read more:
25,000 HTML checks per month. Is that enough for your site?
Save time using our automated web checker. Let our crawler check your web pages on the W3C Validator.