Validation is triggerd by 4 events that are active by default:
Submit
KeyUp
Change
Click -- for check box and radio button

To prevent KeyDown and LostFocus validation use the following options

onkeyup:false,
onfocusout:false,
onclick:false

This information is available on the validate options doc.
http://docs.jquery.com/Plugins/Validation/validate#toptions

So, unless you are disabling the change event, your select should be
re-validated on change event.
Could you post your code?

On Jul 24, 2:56 am, "dustin.c" <dustin.chester...@gmail.com> wrote:
> Hi all,
>    I'm using the jQuery validate plugin.  When select boxes don't pass
> validation, I want them to to be revalidated onChange.  I don't see an
> option for this in the validate() options.  Do I have to add it
> manually to the elements onchange attribute?
> -Dustin

Reply via email to