How to disable right click on blog or website ?
- Go to Blogger Dashboard-->Design--> Edit Html.
- Copy the code below and paste it in Edit HTML before the </head>
<!--ittechnohub.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.
0 comments:
Post a Comment