Skip to content

Instantly share code, notes, and snippets.

@huertanix
Created April 9, 2015 17:04
Embed
What would you like to do?
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