How to disable "Save Image As" from right click

Hey BroadStreet2727,
So one way is to use a background image instead of image tag.
Another way is to disable right click but only on the image. You will need jQuery:

$("body").on("contextmenu", "img", function(e) {
  return false;
});