Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.  
  5. <script type="text/javascript">
  6. counter=0;
  7. function incCounter(lala)
  8. {
  9. counter=counter+1;
  10. message.value=counter;
  11. if (counter == 20)
  12.     {
  13.     alert("Clicked the button too many times");
  14.     }
  15. }
  16. </script>
  17.  
  18. </head>
  19.  
  20. <body>
  21.  
  22. <h1>Button Example</h1>
  23. <form>
  24. <input type="text" readonly="yes" size="30" id="message" value="Button has not yet been pressed" />
  25. <input type="button" value="Click Me" onclick="incCounter(this.form)"/>
  26. </form>
  27.  
  28. </body>
  29.  
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement