HamdanNur

js

Jul 21st, 2017
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript"> function disableSelection(target){
  2. if (typeof target.onselectstart!="undefined") //IE route
  3.     target.onselectstart=function(){return false}
  4. else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
  5.     target.style.MozUserSelect="none"
  6. else //All other route (ie: Opera)
  7.     target.onmousedown=function(){return false}
  8. target.style.cursor = "default"
  9. }
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment