How to Disable right click using jQuery
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Method 2 (Send from one of the reader):
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
e.preventDefault();
});
});
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Method 2 (Send from one of the reader):
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
e.preventDefault();
});
});
0 comments:
Post a Comment