How to disable copying text on your Blogger post
Content thieves are increasing at a point where you cannot do anything about it, even if they are copying your content, by doing this they are getting their ranks increase, to avoid this and stopping then from copying our posts and making their work of even more complicated this is my method
- Copy the below code and paste it in add gadget in blogger dash board or just above </body> or below <head>
<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>
Comments
Post a Comment