haruzie

Disable Right Click

Jun 2nd, 2012
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!--Paste it between <head> and </head> tag -->
  2.  
  3.  
  4. <script language=JavaScript>
  5. <!--
  6.  
  7. //Disable right click script III- By Renigade ([email protected])
  8. //For full source code, visit http://www.dynamicdrive.com
  9.  
  10. var message="";
  11. ///////////////////////////////////
  12. function clickIE() {if (document.all) {(message);return false;}}
  13. function clickNS(e) {if
  14. (document.layers||(document.getElementById&&!document.all)) {
  15. if (e.which==2||e.which==3) {(message);return false;}}}
  16. if (document.layers)
  17. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  18. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  19.  
  20. document.oncontextmenu=new Function("return false")
  21. // -->
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment