Skip to content

Instantly share code, notes, and snippets.

@corcorans
Created August 28, 2014 15:00
Show Gist options
  • Save corcorans/8084b2338710f3890bf6 to your computer and use it in GitHub Desktop.
Save corcorans/8084b2338710f3890bf6 to your computer and use it in GitHub Desktop.
Re enable the right click functionality on a webpage
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