Skip to content

Instantly share code, notes, and snippets.

@omniosi
Created February 4, 2014 14:50
Show Gist options
  • Save omniosi/8804962 to your computer and use it in GitHub Desktop.
Save omniosi/8804962 to your computer and use it in GitHub Desktop.
a function to call a console log to avoid console issues in IE
//custom console.log
function log(msg){
try{
console.log(msg);
}
catch(e){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment