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
Maybe something like this?
$("#element").blur(function(){ $(this).validate({ // your code here }) })