3.3.3 Error Suggestion: If an input error is automatically detected and suggestions for correction are known, then the suggestions are provided to the user, unless it would jeopardize the security or purpose of the content. (Level AA)
While SC 3.3.1 Error Identification talks about providing the errors in text format the SC 3.3.3 Error Suggestion is a little different & easy to follow. The intention of this success criterion is to help users identify the errors & provide them with right hints if the form validation fails. For example if an email address is left blank or entered incorrectly, the error message “invalid email address” is not sufficient. In this instance, the error message is not providing enough information to the user to fix the error & provide the right data to pass through the form validation. The right error would be “invalid email address, enter [email protected]”. In this example, users are aware of what pattern to enter in specific form fields that need a specific data pattern. The error suggestion also applies to the fields that are required to pass the form validation. Here letting the users know the specific field is required along with right hint of how to enter that data will enable them to complete the form submission.
Users who benefit this checkpoint are:
- Visually impaired: screen reader users or low vision users rely on hints & errors to get through long form submissions
- Cognitive users: if right set of errors are provided it reduces the cognitive load on the users
- Motor Disable users: when an error is identified & focus is moved to that form control & if the error is properly explained it reduces the number of keystrokes that a motor disable user has to go through.
Points to Ponder
- Provide descriptive errors
- Provide visible hints that will enable the users to avoid errors during form submissions
- Associate the errors with form controls using aria-describedby
- Move the focus to the form control that has the error once validation failed, this reduces the number of key strokes
- Mark the required fields with asterisk visually & programmatically with aria-required.
Leave a Reply