Bloggers always wanted to prevent visitor or other bloggers from copying the unique content from their blog or website. Bloggers do lots of efforts by researching and writing good articles for their blog, where as some just copy there articles and tutorials on their blog from others one. So to prevent such bloggers from copying the content from your blog i will teach you how to disable right click on your blog with to prevent copy paste content just simple JavaScript. So lets get started.
How to disable right click on blog or website ?
1. Go to your blogger Dashboard and click on Layout.
2. Then click on Add Gadget.
3. Choose HTML/JavaScript From Popup Window
4. Now Copy and Paste below code into it.
<!–MBW Code –>
<!–mybloggersworld.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.
Got any problem ?
If you have any problem disabling right click on your blog or have any other question or suggestion then leave a comment below. I will be glad to help you. Don’t Forget to subscribe, +1 on Google+ and like us on Facebook.