Answers for "disable right click jquery"

3

disable right click jquery

//Disable mouse right click
$("body").on("contextmenu", function(e) {
  return false;
});
Posted by: Guest on April-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language