Skip to content

Instantly share code, notes, and snippets.

@dogenpunk
Created August 7, 2012 12:17
Show Gist options
  • Save dogenpunk/3284851 to your computer and use it in GitHub Desktop.
Save dogenpunk/3284851 to your computer and use it in GitHub Desktop.
Cross-browser logging function
function log() {
try {
console.log.apply( console, arguments );
}
catch( e ) {
try {
opera.postError.apply( opera, arguments );
}
catch( e ) {
alert(Array.prototype.join.call( arguments, " " ));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment