Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All attributes

aria-valuetext

String

Provides a human-readable alternative to aria-valuenow for cases where the raw number would confuse — for example a slider whose values map to sizes ('Medium') or to days of the week. When set, screen readers announce this text in place of the number. Update it whenever aria-valuenow changes.

Value
Any string of text.
Used on
<input type="range">
Example
aria-valuetext="…"
<div role="slider" aria-valuenow="2"
  aria-valuetext="Medium">…</div>