Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.

Use unique IDs for ARIA references

IDs referenced by ARIA attributes must be unique to ensure correct accessibility relationships.

Utilities
Quick take
Typical fix time 10 min
  • Ensure IDs referenced by ARIA attributes (e.g., aria-labelledby) are unique
  • Avoid duplicate IDs that lead to ambiguous accessibility relationships
  • Verify that ARIA controls correctly target their intended elements
Why it matters: When ARIA attributes point to duplicate IDs, assistive technologies may read the wrong label or description, providing misleading information to the user.

Rule Details

ARIA attributes like aria-labelledby, aria-describedby, and aria-controls rely on element IDs to create relationships. If these IDs are not unique, the relationships become ambiguous and unreliable.

Code Example

<!-- ✅ Good: Unique IDs for ARIA mapping -->
<h2 id="modal-title-1">Settings</h2>
<div role="dialog" aria-labelledby="modal-title-1">...</div>
 
<!-- ❌ Bad: Duplicate IDs referenced by ARIA -->
<div id="desc">Standard shipping</div>
<button aria-describedby="desc">Option A</button>
 
<div id="desc">Express shipping</div>
<button aria-describedby="desc">Option B</button> <!-- Error: Screen reader may only see the first "desc" -->

Why It Matters

  • Accurate Labeling: Screen readers use these references to announce labels and descriptions. Duplicates cause the wrong text to be read.
  • Dynamic Interaction: aria-controls helps users understand which part of the page changes when they interact with a toggle or menu.
  • Relationship Clarity: Clear ID mapping ensures that users with disabilities receive the same contextual information as sighted users.

Best Practices

Unique Reference IDs: Ensure that every element used as a label or description source has a globally unique ID. ✅ Validation: Use tools that specifically check the "Accessibility Tree" to ensure references are resolving correctly. ✅ Dynamic IDs: If generating content dynamically, use a library or utility to ensure generated IDs are unique (e.g., useId in React).

Tools & Validation

Exceptions

  • Prefer native HTML semantics over ARIA when both are possible; some apparent ARIA failures disappear when the underlying element is corrected.
  • A missing ARIA attribute is not automatically the strongest finding if the control is already semantically broken, unnamed, or keyboard-inaccessible.
  • Do not add ARIA only to satisfy the rule if the feature should instead be implemented with a native element or a simpler interaction pattern.

Standards

  • Align the implementation with WAI-ARIA 1.2 and verify the rendered experience, not only the source code.
  • Align the implementation with MDN: ARIA and verify the rendered experience, not only the source code.

Verification

Automated Checks

  • Inspect the browser accessibility tree or accessibility pane for the relevant element, role, or accessible name.
  • Run an automated accessibility checker such as axe or Lighthouse where applicable.

Manual Checks

  • Test the affected UI with keyboard-only navigation and confirm the rule holds in the rendered experience.
  • Re-test one representative user flow with a screen reader if this rule affects a key interaction.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

Identify elements where an ARIA attribute references an id that appears multiple times in the DOM.

Fix

Auto-fix issues

Ensure all elements referenced by ARIA attributes have unique IDs and update the references accordingly.

Explain

Learn more

Explain how unique IDs are essential for establishing reliable relationships between ARIA attributes and their targets.

Review

Code review

Review the rendered markup and interactive states that affect Use unique IDs for ARIA references. Flag exact elements, roles, labels, focus behavior, or keyboard interactions that violate the rule, and note how to verify the fix with browser accessibility tooling or assistive tech.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

axe DevTools
deque.comTool

Rules that often go hand-in-hand with this one.

Provide accessible names for tooltips

Checks that tooltip elements have accessible names

Accessibility
Ensure all input fields have accessible names

Checks that input fields have accessible names so screen reader users know what data each field expects.

Accessibility
Use valid values for ARIA attributes

Checks for valid values in ARIA attributes

Accessibility
Use only allowed ARIA attributes for each role

Checks that ARIA attributes are allowed on their elements to ensure valid accessibility trees.

Accessibility

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385