Disable Selection from web page

Copy the source code below the line and paste in your web page to disable selection. 

If you want to use it on the blog you add the gadget of HTML / Java and paste it.
By this no one can copy of anything (Text) from your website or blog.....And you can upload every thing safely.
------------------------------------------------------------------------------------------------------------------

<script type="text/javascript">

/***********************************************
* Disable select-text script
  Let's Programming
  key_to_programming@yahoo.com
***********************************************/

//form tags to omit in NS6+:
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>

Comments

Popular posts from this blog

Umbrella activities in Software Engineering

Operating System | Best Definition of Opetating System