[jQuery] Re: Disable submit button with Validation plugin

2009-08-19 Thread fieory
validate", submitHandler: function(form) { $("button").attr('disabled', 'disabled'); form.submit(); } }); }); On Aug 18, 1:37 pm, fieory wrote: > Hi Jörn, > > I'm totally newbie toJqueryand i'm usingjQueryval

[jQuery] Re: Disable submit button with Validation plugin

2009-08-17 Thread fieory
(":submit").attr("disabled", "disabled").attr ("value","Submitting..."); form.submit(); } }); }); - Fieory - On Aug 10, 9:01 pm, Jörn Zaefferer wrote: > Try this: > > $(document).ready(function() { >    $("#myForm"