Skip to content

Instantly share code, notes, and snippets.

@jdaily
Last active December 28, 2015 22:09
Show Gist options
  • Save jdaily/7569608 to your computer and use it in GitHub Desktop.
Save jdaily/7569608 to your computer and use it in GitHub Desktop.
IE fix for console.log
// Stupid IE Fixes
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