Skip to content

Instantly share code, notes, and snippets.

@jgodson
Last active April 25, 2018 03:54
Show Gist options
  • Save jgodson/211f2f77aa8d345bc8588d5b6570bb2f to your computer and use it in GitHub Desktop.
Save jgodson/211f2f77aa8d345bc8588d5b6570bb2f to your computer and use it in GitHub Desktop.
Prevent right click on images
document.addEventListener('contextmenu', function(evt) {
if (evt.target.nodeName === "IMG") {
evt.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment