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. It works fine
> everywhere but for one little issues:
>
> i need to trigger a function onblur of a single field: i got a "tel"
> and a "mobile" input field one of which is required (at least).
>
> How i trigger the callback after i fill the input to erase th error
> class from the other field?
>
> Thank Vitto
>

Reply via email to