Remove Mouse Right Click In your Website
Stealing contents from a blog and re publishing it on another blog is a regular tendency by newbie bloggers.But they actually don’t know anything about how it will affect their blog branding and other SEO matters.
All bloggers who are lazy to type a article will must do copy contents from other blog, Then they do select the text and then right click and copy the contents, Then right forward they re publish it on their new blog.
60 percent of the problem can be solved by disabling right click on your blog, This make them not to copy text, If they want they should type their self.
How To Disable Right Click ?
Go to Blogger Dashboard > Layout > Add A Gadget
Now choose HTML/Javascript from the selection window
Paste the below given code there
Finally Save 🙂
All bloggers who are lazy to type a article will must do copy contents from other blog, Then they do select the text and then right click and copy the contents, Then right forward they re publish it on their new blog.
60 percent of the problem can be solved by disabling right click on your blog, This make them not to copy text, If they want they should type their self.
How To Disable Right Click ?
Go to Blogger Dashboard > Layout > Add A Gadget
Now choose HTML/Javascript from the selection window
Paste the below given code there
Finally Save 🙂
That’s all now you have disabled right click on your blog !
<script language=JavaScript>
<!–
//Disable Right Mouse Click By Hackerprime
//By Hackerprime.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>
Comments
Post a Comment