drunk-to-feel-love

Disable Right Click Code

Apr 4th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 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. function NS(e)
  14. {
  15. if (document.layers || (document.getElementById && !document.all))
  16. {
  17. if (e.which == "2" || e.which == "3")
  18. {
  19. return false;
  20. }
  21. }
  22. }
  23. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  24.  
  25. //-->
  26. </script>
Add Comment
Please, Sign In to add comment