What fresh hell is THIS now? - Patrick Lauke
aria-describedby
on the invalid control which points to it’s error message?
[chris__pearce] Just wondering what’s the best practice in terms of ARIA and setting focus when doing inline form validation, the validation is triggered on Submit and the errors are positioned directly under the form control. An example:
```<input type="email" id="email-address” name="email-address" aria-describedby="error-msg-1" aria-invalid="true">
<p id="error-msg-1">Please enter a valid email address</p>```