Thursday, May 26, 2016

How to Disable right click and prevent to copying For Blogger



Nowadays many people contents copying. It is 100 % working trick for the Blogger.If your contents is directly copyingfrom site then this post very helpful for you. You can sily do this. There are many advantsges of disabling the right click on your site. This script can prevent the copying. When you apply this script then nobody be able to copy the contents from your site or blog. For this post you save your contentsfrom copying. If you disable the click then you will not be able to click anything on your blog. This tips very sy to adding a gadget.Follow given steps:
Sign into Blogger.comGo to>>Blogger Dashboard>>>LayoutIn Layout to go to >> Add gadgetSelect HTML/JavaScript

Copy below and paste in HTML/JavaScript box
<script type="text/javascript">
var omitformtags=["input", "textar", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script> View Raw Here

Click on save . you have the done.
If you facing any trouble or confusion then ask me in comment. I will response you as soon as possible. And remember one most important to liking and sharing my contents.

No comments:

Post a Comment