I\'m using the jQuery validator and would like to validate certain elements when certain events occur.
For example: some textboxes should only validate onblur, where
Like this:
$('form').validate({ onfocusout: function(e) { this.element(e); } , onkeyup: false });
Maybe something like this?
$("#element").blur(function(){ $(this).validate({ // your code here }) })