Guest User

Untitled

a guest
Jun 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <html>
  2. <body oncontextmenu="return false;">
  3. <script src="jquery-1.3.2.min.js"></script>
  4. <script>
  5. $(document).ready(function()
  6. {
  7. $(document).mousedown(function(e)
  8. {
  9. if (e.button == 2) //right click
  10. {
  11. document.body.style.backgroundColor = "green";
  12. }
  13. else //left click
  14. {
  15. document.body.style.backgroundColor = "blue";
  16. }
  17. });
  18. });
  19. </script>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment