August 09, 2011

How To Disable Right Click in Your Blog / Using JQuery


How To Disable Right Click in Your Blog / Using JQuery 



1.Login to your blogger dashboard--> Design- -> Edit HTML

2.Scroll down to where you see </head> tag .

3.Copy below code and paste it just before the </head>  tag .

<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>

4. Now Clck on Save Template , you are done..

 Cheers..!


Pictures from www.Jquery.com


No comments:

Post a Comment