prevent right click jquery code example
Example: disable right click jquery
//Disable mouse right click
$("body").on("contextmenu", function(e) {
return false;
});
//Disable mouse right click
$("body").on("contextmenu", function(e) {
return false;
});