<input> with help text as an aria-label

Return to main list

This is a test case designed to determine how help information is applied directly to the <input> via the aria-label attribute, is announced by various screen readers.

Example

Code

<div>
  <label for="name">Name</label>
  <input
    type="text"
    id="name"
    aria-label="Name. Make sure to include full name"
  >
</div>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list