Advertisement
LOUUUUU

Untitled

Mar 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <script language="JavaScript1.2">
  2. //credits to http://www.dynamicdrive.com
  3. function disableselect(e){
  4. return false
  5. }
  6. function reEnable(){
  7. return true
  8. }
  9. //if IE4+
  10. document.onselectstart=new Function ("return false")
  11. //if NS6
  12. if (window.sidebar){
  13. document.onmousedown=disableselect
  14. document.onclick=reEnable
  15. }
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement