Once the field is validated, and shows some errors, the user wants the error to vanish as soon as the edited value is correct, not when he leaves the field or submits the form (which probably will be disabled anyways as long as there are errors displayed).This can be achieved by removing all errors from the field when it becomes dirty again (and revalidate it later on submit or focus lost)
Once the field is validated, and shows some errors, the user wants the error to vanish as soon as the edited value is correct, not when he leaves the field or submits the form (which probably will be disabled anyways as long as there are errors displayed).This can be achieved by removing all errors from the field when it becomes dirty again (and revalidate it later on submit or focus lost)
So basically, is there an easy way to clear errors on a field when the user focuses / starts typing again if the validation is set to onBlur?
I have a signup form where I made a REAL-TIME validation when the user starts typing as you see in the picture. I don't know if this harms the user experience or no, and also I did not find a resou...