Advertisement
Guest User

Untitled

a guest
Nov 7th, 2011
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="http://localhost:8081/target/target-script-min.js#anonymous"></script>
  4. </head>
  5. <body>
  6. <script>
  7. function clickHandler() {
  8. console.log('click');
  9. }
  10. document.body.addEventListener('click', clickHandler);
  11. document.body.removeEventListener('click', clickHandler);
  12. </script>
  13. </body>
  14. </html>
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement