Advertisement
K00dak

Stop Copying Text

Aug 30th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <script language="JavaScript">
  2. <!--
  3. var message="";
  4. function clickIE() {if (document.all) {(message);return false;}}
  5. function clickNS(e) {if
  6. (document.layers||(document.getElementById&&!document.all)) {
  7. if (e.which==2||e.which==3) {(message);return false;}}}
  8. if (document.layers)
  9. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  10. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  11. document.oncontextmenu=new Function("return false")
  12. // -->
  13. </script>
  14. <script language="JavaScript1.2">
  15. function disabletextselect(i){
  16. return false
  17. }
  18. function renabletextselect(){
  19. return true
  20. }
  21. //if IE4+
  22. document.onselectstart=new Function ("return false")
  23. //if NS6+
  24. if (window.sidebar){
  25. document.onmousedown=disabletextselect
  26. document.onclick=renabletextselect
  27. }
  28. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement