Skip to content

Instantly share code, notes, and snippets.

@cowlicks
Created May 23, 2017 20:02
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowlicks/a3bc662b38c36483b35f74b2b54e37c0 to your computer and use it in GitHub Desktop.
Save cowlicks/a3bc662b38c36483b35f74b2b54e37c0 to your computer and use it in GitHub Desktop.
Get restore `console.log` on pages where it has been removed (like twitter) by pulling it out of an iframe.
function setConsole() {
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe);
console = iframe.contentWindow.console;
window.console = console;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment