Every blogger always wanted to prevent copy paste the content from their blog or website. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. So in this situation what should we do? Don't worry about this. In this post I will show you the most easiest way how to disable mouse right click on your blog or website to prevent copy paste your content.
Disable Right Click On Your Blog To Prevent Copy/Paste
☞ First Login to your Blogger Account
☞ Then go to "Layout" Section.
☞ Click "Add a Gadget" Link where you want to put this Widget.
☞ Select "HTML/JavaScript" tab.
☞ An popup box will be open. paste below HTML/JavaScript code there.
<script language=javascript>
var message = "Disabled By Blog Beginner Guide";
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } }
document.onmousedown = rtclickcheck;
</script>
☞ Replace "Disabled By Blog Beginner Guide" with your own message.
☞ Save your widget now.
☞ You are done.
0 comments: