I am using the jQuery Validation plugin and trying to trigger the validation/submit with an alternate button. I would like to create a jquery function that will change the c
You have to call validate with no arguments to trigger the validate function, like this:
validate
$("#applicant-form").validate();