According to the documentation for the JQuery validation plugin:
the validation is lazy: Before submitting the form for the first time, the user can tab through fields without getting annoying messages
Is there any way to display the messages as the user tabs through the form?
Cheers
You can override the default
onfocusoutto do more eager/pre-submit validation you want, like this:The default
onfocusoutlooks like this, disabling theblurvalidation until after it’s been submitted once: