how to disable right click on blogger blog
Even Thieves couldn't save images in your blog.They will be displayed a status message that this function is disabled in this blog .You can customize the status message according to you.
Actually this script is free and very popular among website masters.
Lets Start:
- Sign In to Blogger account and go to relevant blog.
- Go to Edit HTML though Design .
- Now Search fr Below Code.
- Now Copy down the below code and Paste it before the Above code.
- Save the Template ,And refresh your Blog and Right Click on it. Done!
</head>
<!--Disable Copy And Paste--> <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>