Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>My Work</title>
  4. </head>
  5. <body>
  6. <img id="nokia" src="phone.jpg" />
  7. </body>
  8. </html>
  9.  
  10. var phone = document.getElementById("nokia");
  11. phone.onclick=function(){
  12. score++;
  13. output = document.getElementById("score");
  14. output.innerHTML = score;
  15. };
  16. })();
  17. </script>
  18. </head>
  19. <body>
  20. <img id="nokia" src="phone.jpg" />
  21. <div id="score"></div>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement