Events are executed in the order which they are bound. $('').click(function(){ a }; $('').click(function(){ b };
will always occur in order a,b for the same event. You could write some code to change it but it's not a simple task. - ricardo On Sep 25, 2:52 pm, chadmichael <[EMAIL PROTECTED]> wrote: > Is there any way to control the order of multiple event handlers > registered? > > If not, does anyone have an idea of how to make a form that uses > onchange to submit the form ( i.e. i don't want a submit button i just > want the form to submit when someone leaves a field, provided > everything has been filled out ), but also wants to use onchange to > validate data, and possibly do other things?