jQuery.validate + many forms
jQuery.validate can only really deal with 1 form at a time, so if you have many forms on your page, this won't work:
$('form').validate(mySettings);
To get around this limitation, just put a call to .each() in there so that the forms' validation settings are initialised individually:
$('form').each(function() {
$(this).validate(mySettings);
}
Written by Lucas Wilson-Richter
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#