I think every blogger faces a problem regarding copying of contents. Many of the online users visit the site and so the chance of copying the content remains open. so one should disable the option of right click in the blog so that one can’t select and copy the content.
Also read : Linkwithin related posts for Blogger
You can do the steps in blogger so that right click will not work and hence one can’t do copy – paste in the blogger. It is important to activate in a blogspot blog beacuse some Bloggers do many efforts by researching and then writing a great article for their website, whereas some body just visit the website and does copy and paste article for his blog or website. so to prevent this we need to deactivate the right click in the blogspot blog as we see many websites donot allow right click.
How to Disable the right click :
- Go to Blogger Dashboard
- Click on layout and then after Click on add a gadget
- Select add a html/javascript widget
- Paste the following code in the body section and leave the upper portion i mean title as blank
- Click on save and check in your blog, right click is not working.
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>




Leave a Reply