How to Disable Submit Button After Form Submission in PHP?
I will help you for how to disable submit button after click in jquery php. we can prevent double click submit button in jquery html. it will help you to disable submit button after click in php, laravel, codeigniter etc project that use jquery.
Sometime, we have to prevent too many clicks on submit button. if you are working on register form with php then it might be take time to submit form because of long processes of submit page. But if user have server issue or Internet issue etc then he will just click again and again. So may it can create problem form us. so basically you must prevent it by using disabled submit button after one click using jquery.
Here bellow simple example will help you to resolved your problem by using bellow example. You can see full example so it can help you in your php project.
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to Disable Submit Button After Form Submission in PHP? - ItSolutionStuff.com</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
<form action="/post.php" method="POST" id="my-form">
<input type="text" name="name">
<input type="text" name="email">
<button type="submit" id="btn-submit">Submit</button>
</form>
<script type="text/javascript">
$(document).ready(function () {
$("#my-form").submit(function (e) {
$("#btn-submit").attr("disabled", true);
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
- How to Disable F5 Refresh Button using JQuery?
- How to Disable Browser Back Button using JQuery?
- JQuery Disable Right Click, Cut, Copy and Paste Example
- PHP Dropzone Display Existing Files from Server Example
- PHP MySQL Column Sorting Example Tutorial
- PHP JQuery Chosen Ajax Autocomplete Example
- PHP MongoDB CRUD Operation Example
- PHP MySQL Login with Google Account Example
- PHP MySQL DataTables Server-side Processing Example
- PHP MySQL Contact US Form with Validation Example
- How to Disable Right Click Menu using JQuery?
- How to Get IP Address in JQuery?
- Display Loading Image when AJAX Call is in Progress Example
- How to use Google Maps API with JQuery PHP?