Advertisement
x-venom

disable right click

Nov 21st, 2020
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <script type="text/javascript">
  2. <!--
  3.  
  4. // Disable Right Click Script
  5.  
  6. function IE(e)
  7. {
  8. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  9. {
  10. return false;
  11. }
  12.  
  13. }
  14. function NS(e)
  15. {
  16. if (document.layers || (document.getElementById && !document.all))
  17. {
  18. if (e.which == "2" || e.which == "3")
  19. {
  20. return false;
  21. }
  22. }
  23. }
  24. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  25.  
  26. //-->
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement