Skip to content

Instantly share code, notes, and snippets.

@JackuB
Created July 17, 2012 12:36
Show Gist options
  • Save JackuB/3129182 to your computer and use it in GitHub Desktop.
Save JackuB/3129182 to your computer and use it in GitHub Desktop.
console.log for IE8
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