aria-describedby
aria-describedby is a WAI-ARIA attribute that connects an element, such as a form field, image, or widget, to other text on the page that describes it. When a person uses a screen reader, that linked description can be announced to give additional context beyond the element's main label. It works by pointing to the id values of the elements that contain the descriptive text.
aria-describedby is a WAI-ARIA property that establishes a programmatic relationship between an element and one or more other elements that describe it, using a space-separated id reference list. Assistive technologies generally use the referenced content to provide supplementary descriptive information distinct from the element's accessible name. It is documented in W3C WCAG techniques (for example, ARIA1 for form fields and ARIA15 for image descriptions) as a technique that may help satisfy relevant success criteria; note that WCAG techniques are advisory and that support behavior can vary across assistive technologies, so manual testing is recommended.
Why it matters
Many interface elements need more explanation than a short label can provide. A password field may require formatting rules, a form control may have associated error or hint text, and an image or diagram may need a longer description. aria-describedby lets developers connect these elements to that descriptive text programmatically, so a screen reader can announce the supplementary information after the element's accessible name. Without such a relationship, the description may appear visually but never reach assistive technology users, leaving them without context that sighted users receive.
The attribute is referenced in W3C WCAG techniques, such as ARIA1 for associating descriptions with form controls and ARIA15 for providing descriptions of images. These techniques are advisory ways that may help satisfy relevant success criteria rather than requirements in themselves. Using aria-describedby appropriately can support a more usable experience, but meeting a technique does not by itself guarantee conformance, an accessible experience for all users, or immunity from legal claims.
Support behavior for aria-describedby can vary across browsers and assistive technologies, and how and when the referenced text is announced is not uniform. For this reason, teams should not assume that adding the attribute resolves an accessibility barrier. Manual testing with actual screen readers, alongside automated checks, is recommended to confirm that the description is conveyed as intended. This entry is general guidance and not legal advice; requirements and testing expectations evolve, and organizations should consult qualified professionals for their specific circumstances.
Who it's relevant to
Inside aria-describedby
Common questions
Answers to the questions practitioners most commonly ask about aria-describedby.