<select> with multiple

Return to main list

This is a test case designed to determine how the multiple attribute applied to the <select> element is announced by various screen readers.

Example

Code

<div>
  <label for="suburb">Suburb</label>
  <select id="suburb" multiple>
    <option value="Abbotsbury">Abbotsbury</option>
  </select>
</div>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list