Showing posts with label Add Disable Right Click Only Images For Blogger. Show all posts
Showing posts with label Add Disable Right Click Only Images For Blogger. Show all posts

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>