Skip to content

Instantly share code, notes, and snippets.

@ideag
Created May 12, 2015 08:25
Show Gist options
  • Select an option

  • Save ideag/0d6ed9e2f94a52d60349 to your computer and use it in GitHub Desktop.

Select an option

Save ideag/0d6ed9e2f94a52d60349 to your computer and use it in GitHub Desktop.
Block context menu on right click
jQuery(document).on( "mousedown", function(event) {
if("3" == event.which ) {
document.oncontextmenu = document.body.oncontextmenu = function() {return false;}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment