Show Mobile Navigation
,

How to Disable "View Source Code" from Blogger

Hemant Verma - 11:49 AM
In today days many publishers is going to copying your source code and also try to copy your content, and we try many kinds of plugins to stop that copying of view source but these plugins are very expensive and we will have to buy them all together and also we will have to renew that every year and also we have to give taxes of maintenance. but in blogger it si totally free you have to just add some simple code and that will not charge any kind of single penny from you.



Install Code here...
Follow all steps carefully.
  • Login to Blogger > Template
  • Take Backup of Your Template Before Edit
  • Click on "EDIT HTML" 
  • Paste below code just above of </head> tag
<script type='text/javascript'>
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) &amp;&amp; isCtrl == true)
{
// alert(&#8216;Keyboard shortcuts are cool!&#8217;);
return false;
}
}
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script>

  • Now Save Your Template 
  • You are done.



0 comments:

Post a Comment

You may use these HTML tags and attributes: <a href="" title=""> </a> <b> </b><strong> </strong>

 



Make Your Blog Like a Pro
About | Contact | Affiliates | Privacy Policy | TOS