Skip to content

Instantly share code, notes, and snippets.

@brandonsheppard
Created March 9, 2015 23:22
Show Gist options
  • Save brandonsheppard/713e9f2e9fe3bbcfc445 to your computer and use it in GitHub Desktop.
Save brandonsheppard/713e9f2e9fe3bbcfc445 to your computer and use it in GitHub Desktop.
Disable Right-click on images
$('img').bind('contextmenu', function(e){
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment