Disable Right Click on your Blog to Prevent Copy and Paste Bloggers

Writing a great content is not easy and for someone to just copy and paste such content as their own is just unfair that is why Bloggers always wanted to prevent Copy and Paste Bloggers, users or other bloggers from copying contents from their blog or website. This post is to help prevent suchCopy and Paste Bloggers from copying your content from your blog by disabling right click on your blog with just simple JavaScript. So lets get started.

How to disable right click on blog or website ?

  • Go to your blogger Dashboard and click on Layout.
  • Then click on Add Gadget.
  • Choose HTML/JavaScript From Popup Window
  • Now Copy and Paste below code into it.
<!–BMB Code –>
<!–bestmanblog.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>
   5. Now save it and you are done disabling right click on your blog.

Comments