Code Library
Home Submit Free Hosting Link To Us Contacts

JavaScript Disable Text Selection Script

JavaScript Disable Text Selection Script JavaScript JavaScript Disable Text Selection Script Download (.zip)



<script type="text/javascript">
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>






JavaScript Disable Text Selection Script