Created
September 17, 2013 18:53
-
-
Save make-sum/6598988 to your computer and use it in GitHub Desktop.
IE console.log fallback support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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