Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script>
  2.  
  3. window.onload=function(){
  4.  
  5. document.getElementById("area").addEventListener("click", function(){
  6.  
  7. document.getElementById("callout").innerHTML = "click";
  8. });
  9.  
  10. document.getElementById("area").addEventListener("touchstart", function(){
  11.  
  12. document.getElementById("callout").innerHTML = "touchstart";
  13. });
  14.  
  15. document.getElementById("area").addEventListener("touchend", function(){
  16.  
  17. document.getElementById("callout").innerHTML = "touchend";
  18. });
  19.  
  20. document.getElementById("area").addEventListener("touchmove", function(){
  21.  
  22. document.getElementById("callout").innerHTML = "touchmove";
  23. });
  24.  
  25. }
  26. </script>
  27. <body id="touchy">
  28. <div id ="area" style="background-color:#ff0000; height:200px;"></div>
  29. <div id="callout"></div>
  30. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement