Tuesday, January 12, 2016

How to Disable mouse right click in your blog






Signin to Blogger 
  1. Go to Template
  2. Edit HTML
  3. Find </head> or hit ctrl + F on your keyboard and put </head> on the box and hit enter.
  4. Copy the code below and paste  above/before  </head>.Then Save Template...Done.

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
//]]>
</script>