I'm using jQuery Validation plugin for form fields validation. Idea is that if any field on form submit is not valid password fields and their error messages reset, while other fields remain. I've menage to reset password fields but I can't remove error messages.
Code's here: http://jsfiddle.net/2Z9jp/
If you enter invalid values for all fields and submit, password input fields will be empty, but their errors are still there. What I want is to remove error messages for password fields in this case.
It seems that highlight happens after invalidHandler and that that cause this issue.
Here's the code:
<form id="registerForm" class="regForms" method="post" action="/">
<span>username: </span><input type="text" id="username" name="username" /><br />
<span class="passwordHolder">
<span>password: </span><input type="password" id="password1" name="password1" /><br />
</span>
<span class="passwordHolder">
<span>confirm password: </span><input type="password" id="password2" name="password2" /><br />
</span>
<input type="submit" />
</div>
</form>
$("#registerForm").validate({
rules: {
username: {
required: true,
minlength: 6
},
password1: {
required: true,
minlength: 6,
maxlength: 256
},
password2: {
required: true,
equalTo: "#password1",
minlength: 6,
maxlength: 256
}
},
messages: {
username: {
required: "required",
minlength: "should be 6 or longer"
},
password1: {
required: "required",
minlength: "should be 6 or longer"
},
password2: {
required: "required",
minlength: "should be 6 or longer",
equalTo: "should be the same as password"
}
},
invalidHandler: function(form, validator) {
$(':password').val('');
$('.passwordHolder label.error').hide();
}
});

invalidno matter what you try to do... that's what the plugin is supposed to do when a field fails validation. And clickingsubmittwice brings back the other error message. – Sparky Dec 18 '12 at 7:42