JavaScript Submit button hack

↓ ads

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:

↓ ads

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.

3 thoughts on “JavaScript Submit button hack

Leave a Reply

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

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>