Hope you may have already saw one thing while blogging through the internet,it's duplicate contented blogs/website.There are many such sites available in the internet who copied your content and paste into their blog without giving any credit to you.So to prevent such kind of theft you need two things-1)Disable Right Click on your blog and 2)Disable highlighting function on your blog.Want to see a Demo,then click here.
Disable Right Click
- Go to blogger dashboard>layout>add a gadget>html/javascript>add the following code there
<script language=”JavaScript”>
<!–
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message=”Function Disabled!”;
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function(“alert(message);return false”)
// –>
</script>
Now save the template and you're done.
Disable Highlighting
- Go to blogger dashboard>layout>add a gadget>html/javascript>add the following code there
<!--Disable Highlighting--> <style type='text/css'> .post{ -webkit-user-select: none; /* Webkit */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE 10 */ /* Currently not supported in Opera but will be soon */ -o-user-select: none; user-select: none; } </style>
save it and you're done.





.jpg)



This would really help to avoid people from copying and pasting your blogs to their site.
ReplyDeleteWhy is it that it only works temporarily?
ReplyDeleteNo,it'll work permanently.
Deletealso, how come your own blog is not copy/paste protected?
ReplyDeleteCause we share codes in our blog,so if we made this blog copy/paste protected then how could our reader use those codes on their blog? :)
Deleteanother great blogger thing to know. it's so irritating to see nowadays how some people have the nerve to simply copy and paste what took you hours to write about
ReplyDeleteThanks for sharing!
ReplyDeleteunfortunately, disabling it doesn't always work against serious scrapers because they use an aggregator that aggregates content from your RSS feed... at least, it will prevent those who are new to scraping or stealing content for a while or until they learn how to use programs that does it automatically... just sharing
ReplyDelete