Skip to content

Instantly share code, notes, and snippets.

@ecaldwell
Created July 30, 2013 22:20
Show Gist options
  • Save ecaldwell/6117573 to your computer and use it in GitHub Desktop.
Save ecaldwell/6117573 to your computer and use it in GitHub Desktop.
Disable the right click context menu
// Disable the right click context menu.
$(document).on("contextmenu", (function() {
return false;
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment