You sit for hours to write the article. With great enthusiasm you upload the article on your website or on your blog. After few days while surfing on the net you came across your article on some other website who claim that the article is their creation. Heartbroken, right? Well it is common now a days to copy the articles without even mentioning the name of the author. One of the way to prevent copying is to disable the selection on your website. Usually the ones who copy the article does not have patience to type all what you have written. Follow the below mentioned instructions if you wish not to allow users to copy from your blog or website
Take the backup of your blog or website
Go to dashboard -> Template -> Edit HTML
Post the below code immediately after <head>
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Tadda you are done ! Try this simple yet effective way to prevent your articles from getting copied.
Image Source: 1
Take the backup of your blog or website
Go to dashboard -> Template -> Edit HTML
Post the below code immediately after <head>
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Tadda you are done ! Try this simple yet effective way to prevent your articles from getting copied.
Image Source: 1