See Understanding Techniques for WCAG Success Criteria for important information about the usage of these informative techniques and how they relate to the normative WCAG 2.0 success criteria. The Applicability section explains the scope of the technique, and the presence of techniques for a specific technology does not imply that the technology can be used in all situations to create content that meets WCAG 2.0.
Technologies that support Accessible Rich Internet Applications (WAI-ARIA).
This technique relates to:
See User Agent Support Notes for ARIA16. Also see WAI-ARIA Technology Notes.
The purpose of this technique is to provide names for user interface controls that can be read by assistive technology. WAI-ARIA provides a way to associate text with a section, drawing, form element, picture, and so on, using the aria-labelledby
property. This techniques uses the aria-labelledby
attribute to associate a user interface control, such as a form field, with text on the page that labels it.
Like aria-describedby
, aria-labelledby
can accept multiple ids to point to other elements of the page using a space separated list. This capability makes aria-labelledby
especially useful in situations where sighted users use information from the surrounding context to identify a control. Using aria-labelledby to concatenate a label from several text nodes contains more examples of situations where names are created from several other text elements on the page.
While the function of aria-labelledby appears similar to the native HTML label element, there are some differences:
aria-labelledby
can reference more than one text element; label
can only reference one.
aria-labelledby
can be used for a variety of elements while the label
element can only be used on form elements.
Clicking on a label
focuses the associated form field. This does not occur with aria-labelledby
. If this behaviour is required then use label
or implement this functionality using scripting.
Note that as of December 2013, label
has better support than aria-labelledby
, especially in older browsers and assistive technologies.
The following is an example of aria-labelledby
used on a simple text field to provide a label in a situation where there is no text available for a dedicated label but there is other text on the page that can be used to accurately label the control.
<input name="searchtxt" type="text" aria-labelledby="searchbtn">
<input name="searchbtn" id="searchbtn" type="submit" value="Search">
Below is an example of aria-labelledby
used to provide a label for a slider control. In this case the label text is selected from within a longer adjacent text string. Please note that this example is simplified to show only the labeling relationship; authors implementing custom controls also need to ensure that controls meet other success criteria.
<p>Please select the <span id="mysldr-lbl">number of days for your trip</span></p>
<div id="mysldr" role="slider" aria-labelledby="mysldr-lbl"></div>
The following example of aria-labelledby
with multiple references uses the label
element. For additional detail on concatenating multiple sources of information into a label with aria-labelledby
, please view the technique Using ARIA labelledby to concatenate a label from several text nodes.
<label id="l1" for="f3">Notify me</label>
<select name="amt" id="f3" aria-labelledby="l1 f3 l2">
<option value="1">1</option>
<option value="2">2</option>
</select>
<span id="l2" tabindex="-1">days in advance</span>
Note: The use of the label
element is included for a number of reasons. If the user clicks on the text of the label
element, the corresponding form field will receive focus, which makes the clicking target larger for people with dexterity problems. Also the label
element will always be exposed via the accessibility API. A span
could have been used (but if so, it should receive a tabindex="-1"
so that it will be exposed via the accessibility API in all versions of Internet Explorer). However, a span
would lose the advantage of the larger clickable region.
Resources are for information purposes only, no endorsement implied.
For each user interface control element where an aria-labelledby
attribute is present:
Check that the value of the aria-labelledby
attribute is the id
of an element or a space separated list of id
s on the web page.
Check that the text of the referenced element or elements accurately labels the user interface control.
#1 and #2 are true.
If this is a sufficient technique for a success criterion, failing this test procedure does not necessarily mean that the success criterion has not been satisfied in some other way, only that this technique has not been successfully implemented and can not be used to claim conformance.