Skip to content

Instantly share code, notes, and snippets.

@ojimac
Created May 28, 2012 14:38
Show Gist options
  • Save ojimac/2819484 to your computer and use it in GitHub Desktop.
Save ojimac/2819484 to your computer and use it in GitHub Desktop.
クロスブラウザ対応ログ関数 - JavaScript Ninjaより
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