Skip to content

Instantly share code, notes, and snippets.

@leobossmann
Created February 6, 2013 14:52
Show Gist options
  • Save leobossmann/4723027 to your computer and use it in GitHub Desktop.
Save leobossmann/4723027 to your computer and use it in GitHub Desktop.
console.log replacent for incapable browsers
if(!(typeof console).match(/object/i)){
console = { log : function(a){ alert(a) } };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment