Skip to content

Find what you need, instantly

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

All attributes

aria-valuenow

Number

Holds the current numeric value of a range widget such as a slider, spinbutton, or progress bar. Screen readers announce it, often as a percentage between aria-valuemin and aria-valuemax. When the raw number isn't meaningful on its own, add aria-valuetext to supply readable text instead.

Value
Any number, typically within the widget's min/max range.
Used on
<input type="range"><progress><meter>
Example
aria-valuenow="…"
<div role="slider" aria-valuenow="60"
  aria-valuemin="0" aria-valuemax="100">…</div>