[jQuery] Re: [validate] callback onblur on single input field

2008-10-13 Thread Jörn Zaefferer
I've started gathering sites using the plugin some time ago, its still a very small list, though I'm quite sure there are a ton of unlisted sites. You're welcome to add yours: http://docs.jquery.com/Plugins/Validation#Sites_using_the_plugin Jörn On Mon, Oct 13, 2008 at 5:16 PM, hcvitto <[EMAIL PR

[jQuery] Re: [validate] callback onblur on single input field

2008-10-13 Thread hcvitto
great thanks! as soon as the for is online i'll tell you the link, in case it's useful!! Vitto On 13 Ott, 16:28, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Try this: > > var fields = $("#tel, #mobile"); > fields.blur(function() { >   fields.valid(); > > }); > > That triggers validation for bo

[jQuery] Re: [validate] callback onblur on single input field

2008-10-13 Thread Jörn Zaefferer
Try this: var fields = $("#tel, #mobile"); fields.blur(function() { fields.valid(); }); That triggers validation for both field when one of them is blurred. Jörn On Mon, Oct 13, 2008 at 12:05 PM, hcvitto <[EMAIL PROTECTED]> wrote: > > hi > i'm using tha validation plugin on a very long form.