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

Ensure ARIA attributes are valid

All ARIA attributes must be valid and exist in the WAI-ARIA specification.

Utilities
Quick take
Typical fix time 5 min
  • Use only valid, standard-defined ARIA attributes
  • Avoid misspelled or non-existent aria-* properties
  • Ensure screen readers correctly interpret element roles and states
Why it matters: Invalid ARIA attributes are ignored by browsers and screen readers, potentially leaving users with disabilities unable to navigate or understand the interface.

Rule Details

Using valid ARIA attributes ensures that assistive technologies can correctly interpret and communicate the state, role, and properties of web elements to users.

Code Example

<!-- ✅ Valid ARIA attribute -->
<button aria-expanded="false" aria-controls="menu">
  Menu
</button>
 
<!-- ❌ Invalid ARIA attribute -->
<div aria-labeledby="header">...</div> <!-- Misspelled: should be aria-labelledby -->
 
<!-- ❌ Non-existent ARIA attribute -->
<input aria-required-type="email"> <!-- aria-required-type does not exist -->

Why It Matters

  • Assistive Technology Support: Screen readers rely on specific attribute names to provide feedback.
  • Browser Compatibility: Browsers ignore attributes that don't match the WAI-ARIA spec.
  • User Orientation: Correct attributes (like aria-invalid) help users understand form errors and state changes.
  • Future Proofing: Using standard attributes ensures your site remains accessible as browsers evolve.

Best Practices

Verify Names: Double-check the spelling of attributes (e.g., aria-labelledby has two 'l's). ✅ Use Correct Roles: Ensure the ARIA attribute is valid for the role of the element. ✅ Check Values: Ensure the value provided (e.g., "true", "false", or an ID) is valid for that specific attribute.

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 any invalid or misspelled ARIA attributes on HTML elements.

Fix

Auto-fix issues

Replace invalid ARIA attributes with their correct names as defined in the WAI-ARIA specification.

Explain

Learn more

Explain how valid ARIA attributes enable assistive technologies to communicate element state and behavior to users.

Review

Code review

Review the rendered markup and interactive states that affect Ensure ARIA attributes are valid. 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.

Use valid ARIA role values

Checks for valid ARIA role values

Accessibility
Announce dynamic content with ARIA live regions

Dynamic content updates are announced to screen readers using appropriate ARIA live regions.

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
Include required ARIA attributes for roles

Checks that elements have required ARIA attributes for their roles

Accessibility

Was this rule helpful?

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

Loading feedback...
0 / 385