Skip to content

Instantly share code, notes, and snippets.

@fupslot
Created August 17, 2015 13:07
Show Gist options
  • Save fupslot/ec829febdc45a4fb0f33 to your computer and use it in GitHub Desktop.
Save fupslot/ec829febdc45a4fb0f33 to your computer and use it in GitHub Desktop.
if (document.addEventListener) {
document.addEventListener('contextmenu', function(e) {
alert("You've tried to open context menu"); //here you draw your own menu
e.preventDefault();
}, false);
} else {
document.attachEvent('oncontextmenu', function() {
alert("You've tried to open context menu");
window.event.returnValue = false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment