Skip to content

Instantly share code, notes, and snippets.

@noahrc
Created March 6, 2013 22:49
Show Gist options
  • Save noahrc/5103920 to your computer and use it in GitHub Desktop.
Save noahrc/5103920 to your computer and use it in GitHub Desktop.
Console.log for IE with alert fallback
// Enable console.log fallback for IE
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