Created
July 23, 2013 17:26
-
-
Save raphaelchaib/6064291 to your computer and use it in GitHub Desktop.
Disable text selection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function disableselect(e) | |
| { | |
| return false; | |
| } | |
| document.onselectstart=new Function ("return false"); | |
| if (window.sidebar){document.onmousedown=disableselect; | |
| document.onclick=reEnable;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Disable text selection on Firefox --> | |
| <style type="text/css"> | |
| body{ | |
| -moz-user-select: none; | |
| -moz-user-focus:ignore; | |
| /*-moz-user-input:disabled;*/ | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment