[jQuery] Re: Locking submit button interferes with validation plugin

2009-10-15 Thread James
You can just disable the submit button with jQuery easily. $("#myForm").bind("submit", function() { $(this).validate(validation_options); var valid = $(this).valid(); if (valid) { // disable submit button $("#submitBtn").attr('disabled','disable

[jQuery] Re: Locking submit button interferes with validation plugin

2009-10-15 Thread Opally
thanks for the reply James! I'm looking at the jquery Validation plugin, and I don't see how the function you offered integrates with it. Can you offer more detail? Perhaps I need to modify validator to make these changes in the submit button? I'm hoping the author of Validation will see this qu