Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrote this code to disable submit buttons on my website after the click:

$('input[type=submit]').click(function(){
    $(this).attr('disabled', 'disabled');
});

Unfortunately, it doesn't send the form. How can I fix this?

EDIT I'd like to bind the submit, not the form :)

share|improve this question

3 Answers

up vote 28 down vote accepted

Do it onSubmit():

$('form#id').submit(function(){
    $(this).children('input[type=submit]').attr('disabled', 'disabled');
});

What is happening is you're disabling the button altogether before it actually triggers the submit event.

You should probably also think about naming your elements with IDs or CLASSes, so you don't select all inputs of submit type on the page.

Demonstration: http://jsfiddle.net/userdude/2hgnZ/

(Note, I use preventDefault() and return false so the form doesn't actual submit in the example; leave this off in your use.)

share|improve this answer
Yeah, in fact I really want to bind ALL submit in the page. So I don't mind about ID or CLASS in this way :) Tryed with $('input[type=submit]').submit(function() : the form is sent, but the button wont disable anymore... – markzzz Apr 17 '11 at 2:36
3  
You need to put the submit() on the form, not the input. See the demo. – Jared Farrish Apr 17 '11 at 2:37
But is not what I ask :) I want to bind the submit button, not the form... – markzzz Apr 17 '11 at 11:14
1  
That's what you NEED to accomplish what you're after. :) Essentially, you need to on FORM submit event change the input to disabled. You don't do this on an event with the actual button, since that's too early. Have you tried it to see if it works? – Jared Farrish Apr 17 '11 at 13:58
Yeah it works! The only problem is that I have a onSubmit function on form, so that's bind by jquery shadow it! I need to implement this on my original function, or change the whole call! Thanks – markzzz Apr 17 '11 at 23:23
show 4 more comments

How to disable submit button

just call a function on onclick event and... return true to submit and false to disable submit. OR call a function on window.onload like :

window.onload = init();

and in init() do something like this :

var theForm = document.getElementById(‘theForm’);
theForm.onsubmit =  // what ever you want to do 
share|improve this answer

This should take care of it in your app.

$(":submit").closest("form").submit(function(){
    $(':submit').attr('disabled', 'disabled');
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.