Skip to content

Instantly share code, notes, and snippets.

@huertanix
Created April 9, 2015 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huertanix/01c06b0f92b57e279271 to your computer and use it in GitHub Desktop.
Save huertanix/01c06b0f92b57e279271 to your computer and use it in GitHub Desktop.
Blocking right-click context menus in web browsers
(function () {
var blockContextMenu, myElement;
blockContextMenu = function (evt) {
evt.preventDefault();
};
window.addEventListener('contextmenu', blockContextMenu);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment