Advertisement
KrimsN

Untitled

Jun 4th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script language=JavaScript>
  2.       var message="Извините, копирование запрещено!";
  3.  
  4.       function clickIE4(){
  5.       if (event.button==2){
  6.       alert(message);
  7.       return false;
  8.       }
  9.       }
  10. function clickNS4(e){
  11.       if (document.layers||document.getElementById&&!document.all){
  12.       if (e.which==2||e.which==3){
  13.       alert(message);
  14.       return false;
  15.       }
  16.       }
  17.       }
  18. if (document.layers){
  19.       document.captureEvents(Event.MOUSEDOWN);
  20.       document.onmousedown=clickNS4;
  21.       }
  22.       else if (document.all&&!document.getElementById){
  23.       document.onmousedown=clickIE4;
  24.       }
  25. document.oncontextmenu=new Function("alert(message);return false")
  26.  
  27.       </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement