Skip to content

Instantly share code, notes, and snippets.

@rahuldass
Last active August 29, 2015 13:56
Show Gist options
  • Save rahuldass/9154917 to your computer and use it in GitHub Desktop.
Save rahuldass/9154917 to your computer and use it in GitHub Desktop.
Disable right-click on Images #javascript

Disable right-click on Images


This script will disable right-click only 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