< 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
Basics of Drupal, Techniques in drupal, Customizing the Drupal themes, Custom functions in drupal, Does and Dont in Drupal, Interview Question & Answers in Drupal etc.
Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts
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
< 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
Subscribe to:
Posts (Atom)