I am using the very nice bassistance validation plugin for all my form validation needs: http://bassistance.de/jquery-plugins/jquery-plugin-validation/
A problem I encounter: error messages appear instantly, even when a user hasn't finished completing a field. As such: invalid e-mail appears until the user has finished typing.
In the documentation here, one solution is to set the option onkeyup to false causing error messages to only appear onblur.
However, in my setup, I encounter two additional issues (not solved by the solution above)
- Upon submitting an invalid form, error messages are not cleared when correcting them
- When the browser autofill function used, automatically filled out fields stay marked as erroneous.
So, my initial question was: how can I make Bassistance validation fire only after the first submit AND with it's default settings from there on out?
Here's my code:
if($('#contact_form').length) {
$("#contact_form").validate({
rules: {
first_name: {
required: true
},
last_name: {
required: true
},
message: {
required: true
},
telephone: {
required: true
},
email: {
required: true,
email: true
},
email_again: {
required: true,
email: true,
equalTo: "#email"
},
norobot: {
required:true,
minlength:4,
maxlength:4,
number:true
}
}
});
}
Please find the full JavaScript here: http://lad.chocolata.be/js/main.js
Here is a working example with bug with onkeyup set to false:
http://lad.chocolata.be/nl/contact
After submitting the form with some invalid fields, the error messages do not clear upon correcting them.
What am I missing?