Disable the event handling and add manual validation to the username field:

$(...).validate({
  onkeyup: false,
  onfocusout: false
});
$("#username").blur(function() {
  $(this).valid();
});

Jörn

2008/9/18 Jacky <[EMAIL PROTECTED]>:
> Hi all,
> Some question on the validation plugin.
> Say there are 3 fields, and the first one is user name.
> I want to check the availability of the user name on focusout using
> 'remote'.
> But for the rest of the fields, only validate when user clicking submit
> button.
> Can I do that?
> --
> Best Regards,
> Jacky
> 網絡暴民 http://jacky.seezone.net
>

Reply via email to