Start scanning free

( Robust / WCAG 4.1.2 )

ARIA tooltip has no accessible name

This check maps to Name, Role, Value. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Serious Level A WCAG 4.1.2 — Name, Role, Value

What’s wrong

An element with role="tooltip" has no text content or accessible name.

Why it matters

A tooltip exists purely to convey a short piece of information. An empty one that still gets announced wastes the user’s time and tells them nothing.

How to fix it

Make sure the tooltip element always contains the text it’s meant to display before it becomes visible or gets referenced by aria-describedby.

Before
<div role="tooltip" id="tip-1"></div>
After
<div role="tooltip" id="tip-1">Password must be at least 8 characters</div>

Learn more