Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created June 25, 2013 13:43
Show Gist options
  • Save philsinatra/5858535 to your computer and use it in GitHub Desktop.
Save philsinatra/5858535 to your computer and use it in GitHub Desktop.
A fallback for IE8 when console.log commands are used in js debugging. IE8 will display a window.alert rather than an error message.
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