Skip to content

Instantly share code, notes, and snippets.

@Asbra
Created May 25, 2017 14:46
Show Gist options
  • Save Asbra/00a8db57ff1d42e5bf63f8d2aff50a25 to your computer and use it in GitHub Desktop.
Save Asbra/00a8db57ff1d42e5bf63f8d2aff50a25 to your computer and use it in GitHub Desktop.
Re-enable right-click / context menu
window.oncontextmenu = null;
var elements = document.getElementsByTagName("*");
for (var id = 0; id < elements.length; ++id) {
elements[id].oncontextmenu = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment