In this tutorial I will share a trick that how you can stop copying your content by disabling right click. But this won't be able to effective for all blog. Because those who create widget then for sharing purpose they must be give copying opportunity to the visitors for using this. However this trick is fruitful for journal, Job site and article based site those who don't not create any widget tutorial for others. So for activating this trick just follow the below steps.
- DISABLE TEXT SELECTION ON YOUR BLOG POST
Step 1 Log in to your Blogger Account and Go to your Blogger Dashboard
Step 2 Click on Now click on -> Template -> Edit HTML-> Unfold code
Step 3 Now Find this code </head> by Pressing Ctrl + F
Step 4 Paste the below code above </head> and Save the templates.
I hope this tutorial will help to protect your blog content being theft. If you have any query just feel free to leave comment.
<script type="text/javascript">
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
disableSelection(document.body);
</script>
This comment has been removed by the author.
ReplyDelete