<input> with max and aria-valuemax

Return to main list

This is a test case designed to determine how the max and aria-valuemax attributes are announced. In real situations, authors should always provide clear instructions on how to successfully complete form questions.

Example

Code

<div>
  <label for="number">Choose a number</label>
  <input 
    type="number"
    id="number"
    max="20"
    aria-valuemax="20"
  >
</div>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list