Monday, January 1, 2018

How to disable right click and copyright on blog or website

How to disable right click and copyright on blog or website




  • Step 1 : Go to Dashboard > Layout > Add Gadget > HTML / JavaScript
  • Step 2 : Copy the code from this file and paste it in that blogger widget.
  • Step 3 : Save the html/javascript and view you blog.


When you will try to do right click, a message will tell you that �Function disabled� , and if you want to change this words� Function Disabled� Then simply find it in code and replace it.
It is use for copy right protection. No one copy your image or text from your blog or website


Code Download below for disable right click:

For Copyright Protection use this code:

No one copy your post data

Find <header> with ctrl+f in blogger html coding and copy paste below code after <header>
line 

<script language=JavaScript1.2>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

</script>

Download code:





go to link download
download
alternative link download

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.