Skip to content

Instantly share code, notes, and snippets.

@make-sum
Created September 17, 2013 18:53
Show Gist options
  • Save make-sum/6598988 to your computer and use it in GitHub Desktop.
Save make-sum/6598988 to your computer and use it in GitHub Desktop.
IE console.log fallback support
var alertFallback = true;
if ( typeof console === "undefined" || typeof console.log === "undefined" ) {
console = {};
if (alertFallback) {
console.log = function(msg) {
alert(msg);
};
} else {
console.log = function() {};
}
}
if ( myvarible == true ){
console.log("JavaScript: Here is my console log that is an alert in old ie browsers that do not support console.log");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment