JavaScript Submit button hack

submit-button-javascript-hack

On slow server or double clicks often we have double post and double comments on blogs forum, forms, uploading etc. Here is a fast JavaScript hack that can disable the Submit button after the first click. So after the users click submit, the button will be inactive for other incidental clicks. Just with adding this following line to your form inside the "input submit" tag:

onclick="myform.submit();this.disabled=true

here is the an example:

<form name=myform action="form.php" method=post">

<input type="submit" value="Submit" onclick="myform.submit();this.disabled=true">

</form>

And here is a visual when I clicked on Host:

javascript-hack-Host

Hope you enjoy this short guide.

Share your love

3 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *