aria-valuetext
StringProvides 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">
Associated roles
Example
aria-valuetext="…"
<div role="slider" aria-valuenow="2"
aria-valuetext="Medium">…</div>References