vickykumar

Disable blog or site right click

Dec 8th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. }
  2. }
  3.  
  4. function clickNS4(e){
  5. if (document.layers||document.getElementById&&!document.all){
  6. if (e.which==2||e.which==3){
  7. alert(message);
  8. return false;
  9. }
  10. }
  11. }
  12.  
  13. if (document.layers){
  14. document.captureEvents(Event.MOUSEDOWN);
  15. document.onmousedown=clickNS4;
  16. }
  17. else if (document.all&&!document.getElementById){
  18. document.onmousedown=clickIE4;
  19. }
  20.  
  21. document.oncontextmenu=new Function("alert(message);return false")
  22.  
  23. // -->
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment