Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javscript">
  4. var count = 0;
  5. function listeners() {
  6. document.getElementById("element").addEventListener("click","listenerAction",false);
  7. }
  8. function listenerAction() {
  9. count++;
  10. if(count == 1) {
  11. var text = "You clicked the button for the first time!";
  12. } else {
  13. var text = "You clicked the button" + count + "times!";
  14. }
  15. alert(text);
  16. }
  17. window.onload = listeners();
  18. </script>
  19. </head>
  20.  
  21. <body>
  22. <input type="button" id="element" value="Click me!" />
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement