Disable Right Click Only Images For Blogger

<script type="text/javascript">
 $(document).ready(function(){
          // this part disables the right click
  $('img').on('contextmenu', function(e) {
   return false;
  }); 
         //this part disables dragging of image
  $('img').on('dragstart', function(e) {
   return false;
  }); 

 });
</script>

No comments:

Facebook Blogger Plugin: Bloggerized by AllBlogTools.com Enhanced by MyBloggerTricks.com

Post a Comment