Advertisement
galaxias-themes

Disable right click script

Apr 6th, 2020
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <script language=JavaScript>
  2.  
  3. <!--
  4.  
  5. //Disable right click script III- By Renigade (renigade@mediaone.net)
  6.  
  7. var message="";
  8.  
  9. ///////////////////////////////////
  10.  
  11. function clickIE() {if (document.all) {(message);return false;}}
  12.  
  13. function clickNS(e) {if
  14.  
  15. (document.layers||(document.getElementById&&!document.all)) {
  16.  
  17. if (e.which==2||e.which==3) {(message);return false;}}}
  18.  
  19. if (document.layers)
  20.  
  21. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  22.  
  23. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  24.  
  25. document.oncontextmenu=new Function("return false")
  26.  
  27. // -->
  28.  
  29. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement