Guest User

Untitled

a guest
Oct 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <script><!--
  2. //deshabilitar seleccion de texto
  3. // (foros del web)
  4. function disableselect(e)
  5. {
  6. return false
  7. }
  8. function reEnable()
  9. {
  10. return true
  11. }
  12. //if IE4+
  13. document.onselectstart=new Function ("return false")
  14. //if NS6
  15. if (window.sidebar)
  16. {
  17. document.onmousedown=disableselect
  18. document.onclick=reEnable
  19. }
  20. //--></script>
Add Comment
Please, Sign In to add comment