shosei

disable submit on first click

May 13th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  Disable HTML form submit button on first click to prevent double clicks
  3.  following code into <head> section of your page  
  4. */
  5.  
  6. <script language="javascript" type="text/javascript">
  7. function dis(){
  8. frm=document.forms[0];
  9. frm.submit.disabled=true;
  10. }
  11. </script>
  12.  
  13. // and the following code into <form> section :
  14. onsubmit="dis();"
  15.  
  16. /*
  17.  example
  18. <form method="post" action="/index.php" onsubmit="dis();">
  19. */
Advertisement
Add Comment
Please, Sign In to add comment