How to trigger validation without using a submit button How to trigger validation without using a submit button ajax ajax

How to trigger validation without using a submit button


You should be able to just call valid on whatever element you like:

$('selector').valid();

Here are some references:

http://docs.jquery.com/Plugins/Validation/valid

http://docs.jquery.com/Plugins/Validation/validate


You have to call validate with no arguments to trigger the validate function, like this:

$("#applicant-form").validate();