Skip to content

Instantly share code, notes, and snippets.

@skwashd
Created June 12, 2014 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save skwashd/410c7b800fa2666db444 to your computer and use it in GitHub Desktop.
Save skwashd/410c7b800fa2666db444 to your computer and use it in GitHub Desktop.
console.log() for IE
// Lifted from https://stackoverflow.com/a/22103222
if (typeof console === "undefined" || typeof console.log === "undefined") {
console.log = function(msg) {
alert(msg);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment