Skip to content

Instantly share code, notes, and snippets.

@Simounet
Created August 30, 2012 19:17
Show Gist options
  • Save Simounet/3538231 to your computer and use it in GitHub Desktop.
Save Simounet/3538231 to your computer and use it in GitHub Desktop.
IE console log management
var alertFallback = false; // enable it if you wanna see alerts msg
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
if (alertFallback) {
console.log = function(msg) {
alert(msg);
};
} else {
console.log = function() {};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment