Content creation is very big work and it consumes a lot of time. Some people will spent one month to create a single article. But here a bad thing is few people copying content from some good website and they are placing it to their website. This is called content stealing, we should not allow it at any time. So everyone should aware about content stealing and protect your content as much as possible. In general several ways are there to protect your content, here I wanna show you simple technique "Disabling Right Click".
Disabling right click means, you are disabling your website right click functionally. If you disable this functionality for your website, you wont be able to use right click of your mouse. So that people cant select your blog content.
Note: Disabling right click may annoy your real site visitor. If right click disabled means, they wont be able to open your internal links to new tab or window.
Add privacy policy to your website or blog so that people can get fear to copy your content.
You can follow the bellow steps to do this:
Step 1 : Go to Blogger Dashboard => Layout => Click Add Gadget => Click HTML / JavaScript
Step 2 : Copy the below code and paste it in content area of HTML / JavaScript widget.
Step 3 : Save your HTML / JavaScript widget.
That's it now you can view your website without right click functionality.
Thanks!!!
Disabling right click means, you are disabling your website right click functionally. If you disable this functionality for your website, you wont be able to use right click of your mouse. So that people cant select your blog content.
Note: Disabling right click may annoy your real site visitor. If right click disabled means, they wont be able to open your internal links to new tab or window.
Add privacy policy to your website or blog so that people can get fear to copy your content.
You can follow the bellow steps to do this:
Step 1 : Go to Blogger Dashboard => Layout => Click Add Gadget => Click HTML / JavaScript
Step 2 : Copy the below code and paste it in content area of HTML / JavaScript widget.
<script language=JavaScript>
//Disabling right click starts
//code from EarnViaBlog.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")
//Disabling right click ends
</script>
//Disabling right click starts
//code from EarnViaBlog.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")
//Disabling right click ends
</script>
Step 3 : Save your HTML / JavaScript widget.
That's it now you can view your website without right click functionality.
Thanks!!!
No comments:
Post a Comment