Skip to content

Instantly share code, notes, and snippets.

@phantom42
Created April 22, 2013 16:26
Show Gist options
  • Save phantom42/5436484 to your computer and use it in GitHub Desktop.
Save phantom42/5436484 to your computer and use it in GitHub Desktop.
console.log override function for browsers without console object - such is IE8 if debugging is not enabled.
var alertFallback = true;
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