This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof console == "undefined" || typeof console.log == "undefined") { | |
console = {}; | |
console.log = function(msg) { | |
// Comment out line below if you want it to ignore console.log altogether in IE | |
alert(msg); | |
} | |
} |
Code was created during conversation between myself and Slaive. Enjoy!