Skip to content

Instantly share code, notes, and snippets.

View nicksheffield's full-sized avatar

Nick Sheffield nicksheffield

View GitHub Profile
@nicksheffield
nicksheffield / gist:1218259
Created September 15, 2011 00:56 — forked from astorm/gist:992233
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;