[jQuery] Re: jQ Validate Remote on blur()?

2009-03-01 Thread s.ross
I think that's most of the solution. Thanks. onkeyup would be great to set on a per-element basis. When I get a chance, I'll look through the code and see if I can suggest a patch. Thanks again, Steve On Mar 1, 2009, at 3:19 PM, Jörn Zaefferer wrote: Try this: onkeyup: function(elemen

[jQuery] Re: jQ Validate Remote on blur()?

2009-03-01 Thread Jörn Zaefferer
Try this: onkeyup: function(element) { if ( (element.name in this.submitted || element == this.lastElement) && element.name != "user[email]" ) { this.element(element); } } Let me know if that works for you. Jörn On Sun, Mar 1, 2009 at 10:58 PM, s.ross wrote: >