How To Disable Right Click On Your Website Or Blog?
An
amazing trick gonna share for all visitors those how are the owner of
blogs or websites and they write their own articles with really hard
efforts and alots of reseach and after that hard work some users just
copy/paste their article and publish their articles on their sites or
blogs by their own name. To prevent such users from copying content from
your blog we will show you Javascript method to disable right click on
your blog. So lets get started.
Instruction
- Got to your blogger Dashboard and then Click on Layout.
- Now Click on Add Gadget and select Html/Javascript.
- Now paste the html code given below in the pop up windows.
<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>
<!--Code End http://www.busyfiles.com>
- Save it and done. Now users will not be able to right click on your website.



No comments:
Post a Comment