Skip to content

Instantly share code, notes, and snippets.

@sureshdsk
Last active December 24, 2015 18:29
Show Gist options
  • Save sureshdsk/6843668 to your computer and use it in GitHub Desktop.
Save sureshdsk/6843668 to your computer and use it in GitHub Desktop.
Disable right click using jquery
$(document).bind("contextmenu",function(e){
e.preventDefault();
alert('Right click disabled');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment