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

Provide accessible names for ARIA command elements

Checks that command elements like buttons and links have accessible names for screen reader support.

Utilities
Quick take
Typical fix time 10 min
  • Elements with command roles (button, link, menuitem) must have a label
  • Accessible names can be provided via text content, `aria-label`, or `aria-labelledby`
  • Ensures users know the purpose of the interactive element
Why it matters: Without an accessible name, screen reader users will only hear the role (e.g., 'button') without knowing what it does, making the interface impossible to navigate.

Rule Details

Command elements are interactive controls that perform an action. For these to be usable by everyone, they must have a programmatically determinable name that describes their function.

Code Example

<!-- ✅ Correct: Accessible name via text content -->
<button>Submit Form</button>
 
<!-- ✅ Correct: Accessible name via aria-label (for icon buttons) -->
<button aria-label="Close dialog">
  <svg>...</svg>
</button>
 
<!-- ❌ Incorrect: No accessible name (empty or icon-only without label) -->
<button>
  <i class="fa fa-trash"></i>
</button>

Why It Matters

  • Clarity: Informs users exactly what action will be performed when the element is activated.
  • Navigability: Allows users to find and activate controls via voice commands or by browsing lists of controls in their screen reader.
  • Inclusion: Provides a comparable experience for users who cannot see visual icons or cues.
  • Avoids Confusion: Prevents the "unlabeled button" experience, which is one of the most common accessibility barriers.

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 with command roles (like button or link) that lack a clear accessible name.

Fix

Auto-fix issues

Add an accessible name using inner text, `aria-label`, or `aria-labelledby` to all command elements.

Explain

Learn more

Explain how accessible names for command elements enable screen reader users to understand interactive controls.

Review

Code review

Review the rendered markup and interactive states that affect Provide accessible names for ARIA command elements. 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 tree items

All elements with role="treeitem" must have a descriptive accessible name so screen reader users can navigate hierarchical tree widgets.

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
Ensure dialogs have an accessible name

Checks that dialog elements have accessible names to orient screen reader users.

Accessibility
Provide accessible names for meter elements

Checks that meter elements have accessible names to provide context for measurements.

Accessibility

Was this rule helpful?

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

Loading feedback...
0 / 385