Showing posts with label Disable right click on Image IE and FF. Show all posts
Showing posts with label Disable right click on Image IE and FF. Show all posts

Tuesday, March 20, 2012

Disable right click on Image IE and FF

< script src="jquery-1.7.1.min.js" type="text/javascript"  >< /script >
< script language="javascript" >
/*
   Disable right click script (on images)- By Mano
   for  all Browsers :)
*/

$(document).ready(function(){
  $('img').bind("contextmenu",function(e){
     return false;
  });
});
< /script >

Note:  This will not work only in IE browser

Followers