[jQuery] Re: [validate] blur

2009-05-19 Thread Jörn Zaefferer
Its not documented as part of the public API, especially the element-method of the validator instance is otherwise internal only. That mostly affects backwards compability of future versions: I may decide to change the name of the element-method or its usage; currently very unlikely. Jörn On Tu

[jQuery] Re: [validate] blur

2009-05-19 Thread Ravi
Jörn, Thank you for the code, may I ask why is it not intended to be used that way. It works for me, but just curious to know. -- Ravi On May 18, 7:56 pm, Jörn Zaefferer wrote: > Try this: > > $("...").validate({ >   onfocusout: function(element) { >     this.element(element); >   } > > }); >

[jQuery] Re: [validate] blur

2009-05-18 Thread Jörn Zaefferer
Try this: $("...").validate({ onfocusout: function(element) { this.element(element); } }); Not really intended to be used that way, but may solve your problem. Jörn On Mon, May 18, 2009 at 7:28 PM, Ravi wrote: > > Hello, > > I really liked the JQuery validate plugin. I am trying to us