I\'m using jQuery Validate and would like to re-validate a group of fields whenever one of them is changed (or possibly, whenever one of them validates successfully). My att
Dont know how this worked but, just found that removing the below part:
if(!$(element).data('reval')) { var fields = $(options[1], element.form); fields.data('reval', true).valid(); fields.data('reval', false); }
of code from the main code make all the validations to work as normal and expected. :)