Skip to content

Instantly share code, notes, and snippets.

@kerminz
Created April 28, 2019 16:55
Show Gist options
  • Save kerminz/fa2c6d8ab625a95e4ee404b5ac143f10 to your computer and use it in GitHub Desktop.
Save kerminz/fa2c6d8ab625a95e4ee404b5ac143f10 to your computer and use it in GitHub Desktop.
Restore console.log()
// Restore console.log()
javascript: (function() {
var i = document.createElement('iframe');
i.style.display='none';
document.body.appendChild(i);
window.console=i.contentWindow.console;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment