You can use the valid () method to call the validator directly.
It will return a bool, indicating whether the form is valid or not.
Here is an example from jQuery documentation:
$("#myform").validate();
$("a.check").click(function() {
alert("Valid: " + $("#myform").valid());
return false;
});
source
share