I am using jquery.validate.js for my front end validations. The email and other validations work on tab out, but the required validations work only on submitting the form. Is it possible to have all my required validations to work on tab-out as well. Here is a link from the site for the reference code and behaviour: http://jqueryvalidation.org/url-method/
UPDATE:
Adding the below piece of code inside the .validate function worked.
onfocusout: function(element) {
this.element(element);
},
Here is the link - JSFIDDLE