JQuery Disable Submit Button on Click to Prevent Multiple Form Submits
In this small post, we will lean how to disable button on click to prevent multiple form submits in jquery. we can stop duplicate form submission using jquery. we can easily disabled button on click event in jquery for prevent duplicate form submit.
Sometime we are working with php or any framework like laravel codeigniter and you used form with one submit button. we have form is large and big than maybe take time to submitting process so user can click many times but actual form submit again and again.
So we must have to prevent multiple form submits like prevent double click on submit button. so how we can prevent this. we can do it using jquery. when you click on submit button than it should be disabled so it's click again.
I written example for that, you can use bellow php file. you can see bellow full code. You can also check this small jquery code and full code.
$('#myFormId').submit(function(){
$("#myButtonID", this)
.html("Please Wait...")
.attr('disabled', 'disabled');
return true;
});
Here is a full example, you can see.
Example:
<!DOCTYPE html>
<html>
<head>
<title>jQuery disable submit button on click to prevent multiple form submits - ItSolutionStuff.com</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<form id="myFormId">
<input type="text" name="name" placeholder="Name...">
<input type="text" name="email" placeholder="Email...">
<button type="submit" id="myButtonID">Submit</button>
</form>
<script type="text/javascript">
$('#myFormId').submit(function(){
$("#myButtonID", this)
.html("Please Wait...")
.attr('disabled', 'disabled');
return true;
});
</script>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- JQuery Redirect to Another Page After 5 Seconds Example
- How to Remove Empty or Null Values from JSON using JQuery?
- How to Disable F5 Refresh Button using JQuery?
- Add Edit Delete Table Row Example using JQuery
- JQuery - How to Push Specific Key and Value in Array?
- PHP MySQL Integrate Fullcalendar Example Tutorial
- PHP Ajax Dependent Dropdown List Example
- How to Remove Comma from String in JQuery?
- JQuery Add Remove Input Fields Dynamically Example
- JQuery Accordion using JQuery UI Example
- How to Disable Right Click Menu using JQuery?
- JQuery Draggable Sortable Table Rows Example
- JQuery Bootbox Modal Dialog Prompt Example
- How to Remove undefined Value from Array in JQuery?
- How to access PHP variables in JQuery?