Sunday, 1 March 2015

// // Leave a Comment

How To Disable Right Click On Your Blog To Protect Your Content

A good and hardworking blogger spends so much time on researching and creating new and useful content for their blog and their readers. But there are also some people who just copy and paste the work of someone on their blog. It feels very bad when you worked hard and someone copies it with just a few clicks of mouse. Also, when search engines came to know about this, they put down the ranking of the both the blogs. So it is a serious problem and needs to be solved.

Disable Right Click On Your Blog To Protect Your Content

In this post, I will show you how you can disable right click on the content of your blog so that it cannot be copied.

Disable Right Click On Your Blog To Protect Your Content

1. Open your bloggers dashboard. Now go to 'Layout' tab and click on 'Add a Gadget'.

Disable Right Click On Your Blog To Protect Your Content

2. Now from the list of Gadgets, select HTML/Javascript as shown below.

Disable Right Click On Your Blog To Protect Your Content

3. Now copy and paste the following code in that box.
   <!–smartbloggingguide.blogspot.com–>
<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>

4. Save the widget and you are done with it.

Note : This widget will protect your content by disabling right click on it. But, the person can still copy your content by writing the whole post.