Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simplest way to disable button on submission of a form?

I've been trying to find the "right" way to prevent double submits of forms. There are lots of related posts on SO but none of them hit the spot for me. Two questions below.

Here is my form

<form method="POST">     <input type="text" name="q"/>     <button class="once-only">Send</button> </form> 

Here is my first attempt to disable double submits:

$(document).ready(function(){     $(".once-only").click(function(){         this.disabled = true;         return true;     }); }); 

This is the approach suggested here: Disable button after post using JS/Jquery. That post suggests the submitting element must be an input rather than a button, but testing both makes no difference. You can try it yourself using this fiddle: http://jsfiddle.net/uT3hP/

As you can see, this disables the button, but also prevents submission of the form. In cases where the submitting element is a button and an input element.

Question 1: why does this click handler stop submission of the form?

Searching around some more I find this solution (from Why doesn't my form post when I disable the submit button to prevent double clicking?)

if($.data(this, 'clicked')){     return false; } else{     $.data(this, 'clicked', true);     return true; } 

You can play with this using this fiddle: http://jsfiddle.net/uT3hP/1/

This does work, but...

Question 2: Is this the best we can do?

I thought this would be an elementary thing. Approach 1 does not work, approach 2 does, but I don't like it and sense there must be a simpler way.

like image 809
Mike Hogan Avatar asked Mar 20 '13 16:03

Mike Hogan


People also ask

How do you disable submit button on form submit?

Enable / Disable submit button 1.1 To disable a submit button, you just need to add a disabled attribute to the submit button. $("#btnSubmit"). attr("disabled", true); 1.2 To enable a disabled button, set the disabled attribute to false, or remove the disabled attribute.

How do I make a button disabled?

The disabled attribute is a boolean attribute. When present, it specifies that the button should be disabled. A disabled button is unusable and un-clickable. The disabled attribute can be set to keep a user from clicking on the button until some other condition has been met (like selecting a checkbox, etc.).


1 Answers

Simple and effective solution is

<form ... onsubmit="myButton.disabled = true; return true;">     ...     <input type="submit" name="myButton" value="Submit"> </form> 

Source: here

like image 138
Zia Avatar answered Sep 23 '22 18:09

Zia