[jQuery] Re: [validate] disabling onBlur validation on per field basis

2008-05-23 Thread Matti Bäckman
Thanks. This helped. On 20 touko, 20:27, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You can customize the onfocusout-option for that. Something like this: > > $("...").validate({ >         onfocusout: function(element) { >                 if (element.name != "someElementNameToExclude") >      

[jQuery] Re: [validate] disabling onBlur validation on per field basis

2008-05-20 Thread Jörn Zaefferer
You can customize the onfocusout-option for that. Something like this: $("...").validate({ onfocusout: function(element) { if (element.name != "someElementNameToExclude") this.element(element); } }); Jörn On Tue, May 20, 2008 at 3:32 PM, M