Skip to content

Instantly share code, notes, and snippets.

@rutger1140
Created July 4, 2012 11:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rutger1140/3046805 to your computer and use it in GitHub Desktop.
Save rutger1140/3046805 to your computer and use it in GitHub Desktop.
Prevent console.log errors in IE
// Prevent console.log errors
if (typeof console=="undefined") {
console={log:function(A){return;}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment