Skip to content

Instantly share code, notes, and snippets.

@nicksheffield
Forked from astorm/gist:992233
Created September 15, 2011 00:56
Show Gist options
  • Save nicksheffield/1218259 to your computer and use it in GitHub Desktop.
Save nicksheffield/1218259 to your computer and use it in GitHub Desktop.
Fix console.log in Magento
jQuery(document).ready(function(){
fixConsole();
console.log('yo waddup');
});
function fixConsole(){
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe);
window.console = iframe.contentWindow.console;
console.firebug = "faketrue";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment