Tuesday, March 20, 2012

Disable right click on Image tag using Javascript Jquery

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

$(document).ready(function(){
  $("img").attr("oncontextmenu", "return false;");
});
< /script >

Note:  This will not work only in IE browser

2 comments:

  1. thanks for this.. i am looking for Total page right click event disable.. i got information from here..http://aspnettutorialonline.blogspot.com/2012/05/disable-right-click-on-browser-using.html

    ReplyDelete
  2. Copy Prevention is a module - https://drupal.org/project/copyprevention for -
    Disable text selection
    Disable copy to clipboard
    Disable right-click context menu on all site content
    Disable right-click context menu only on images
    And for disable many more . . .

    ReplyDelete

Followers