jquery disable right click on page 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;
});