Injae's Lab
Gallery Interest Calculator Mortgage Calculator Annual Tax Table GST Calculator Week Number Calendar Etc My Blog
Login
20190830.Version 1.0.9263.26623.

My Tech Choices

Title Re-enable right click so that I can inspect HTML elements in Chrome
Writer Injae Date 21/08/2014 3:22:46 PM View 1414 Up 0
http://stackoverflow.com/questions/21335136/re-enable-right-click-so-that-i-can-inspect-html-elements-in-chrome


window.oncontextmenu = null;

var elements = document.getElementsByTagName("*");
for(var id = 0; id < elements.length; ++id) { elements[id].oncontextmenu = null; }