Some of us might want to disable the mouse right click .Below simple code snippet can be used to d the job easily using jQuery.
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Some of us might want to disable the mouse right click .Below simple code snippet can be used to d the job easily using jQuery.
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Leave a comment