Inline error method 6: The aria-labelledby attribute with multiple values

Home | Full results | Github page

In some cases, it is not possible to wrap the label around the form control or error message. The aria-labelledby can be used to explicitly associate the error message with the form control using matching aria-labelledby and id values.

Example

Error: Must be a valid phone number

Markup

<div class="form-container">
  <label class="form-label" for="error4" id="label4">Phone number</label>
  <input class="form-input form-input--error" id="error4" type="text" aria-labelledby="label4 label1">
  <span class="error" id="label1" role="tooltip">Error: Must be a valid phone number</span>
</div>

Results

OSX Voiceover Windows NVDA Windows JAWS
Chrome Safari Opera Chrome Firefox Edge Chrome Firefox Edge
PASS PASS PASS PASS PASS PASS PASS PASS PASS

Home | Full results | Github page