
How to Disable Right Click in Your Blog or in a Webpage ?
- First you can check DEMO of this script. Open Demo page and try right click.
- If you are using Blogger, Go do Design > Edit HTML (else, move to next step)
- Search this code in the template
</head>
- Paste this code just Before the searched line.
<script src='http://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>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
//]]>
</script>
- Save Your template and you're done!