Monday 13 August 2012

Disable Mouse Text Selection

Disable Mouse Text Selection

Script for disable mouse selection 

<script type="text/javascript">
//Disable mouse select
// http://nxwiki.blogspot.com
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false }
function reEnable(){
return true }
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else {
document.onmousedown=disableselect
document.onmouseup=reEnable }
</script>





No comments:

Post a Comment