[jQuery] Re: [validate] How to disable submit button until form is fully validated

2009-03-17 Thread D.Kreft
On Mar 16, 12:26 pm, Stephen Sadowski wrote: > How about > $('#form input,select,radio').change(function() { /* check to see if > necessary fields are filled out, if so enable submit */} Hi Stephen, thanks for your suggestion. The problem with this approach is two-fold: 1) This requires u

[jQuery] Re: [validate] How to disable submit button until form is fully validated

2009-03-16 Thread Stephen Sadowski
Hey, How about $('#form input,select,radio').change(function() { /* check to see if necessary fields are filled out, if so enable submit */} You do have some load for each change on a field, but it would keep the user from being able to submit and validate until you're ready for them to do so.