Saturday, 1 March 2014

Disable Right Click To Avoid Copying From Your Website And Blog

01:06

Now a days the copying of content is increasing rapidly. No one wants to make his own content but want to become popular, but copied content can never become popular and search engines do not crawl the webpages having duplicate content. If you are also suffering from your content is being stolen by others then this post is made for you. Here is a simple script which can stop thieves to dub your posts by disabling right click of mouse and avoid copy function on your website or blog. I am providing two scripts, one for bloggers blog and another for other websites.
Image Source: Google Image Search

Must Read:How To Disable Text Selection To Stop Thieves


Disable Right Click On Bloggers Blog:


  • Go to Blogger>>Layout>>Add Gadget
  • Add HTML/Javascript
  • Add following code in it:

<!-- Code-->
<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>
<!--Code End http://www.tricksdroid.com>
  • Leave title as it is and save gadget.
  • You have successfully disabled right click on Blogger.

Now if you have other platform except the blogger (Wordpress or Private Hosting) then you will have to add another script to disable right click on your blog.

Disable Right Click On Websites:

Suppose you have a wordpress as a platform or any other hosting and you want to disable right click on it then paste the following code anywhere in body section of your blog and save the template.Here is that piece of script:

<script language=JavaScript>
<!--
//Disable right mouse click Script
//(tricksdroid.com) w/
//For full source code, visit http://www.tricksdroid.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>
Last Words:

You have successfully disabled right click on your blog or website so that other people can not copy the content from your blog. But keep in mind that this is not the only thing which can stop then from stealing your content so be careful.There are several tools on internet such as Copyscape.com where you can check plagiarized content. If you find your content copied anywhere on internet then you can can complain to copyright authority to remove it. Tell search engines not to crawl those pages and also ask author to remove it. If your blog also contains the copied content then remove it as soon as possible because it will never make your blog a successful one and it's not proper to take credit of someone else' hardwork. I am going to post some more tricks so that you can stop others to steal your content so keep visiting.For any questions you can leave a comment below.

Written by

Satyam Bora Is 18 Years Old Boy Addicted To Blogging And Technology.He Is A Part Time Blogger And Student Of Civil Engineering. This Guy Is Always Here To Help You :)

1 comments:

  1. This is an amazing trick which is very essential now a days, I just bookmarked this page, I need it later.
    I am from https://www.facebook.com/hottemplates

    ReplyDelete

 

© 2013 TricksDroid. All rights resevered. Designed by Templateism

Back To Top