Answer for http://stackoverflow.com/questions/3326650/console-is-undefined-error-for-internet-explorer
by joquery
JavaScript
window.log = function () {
if (this.console && this.console.log) {
this.console.log(Array.prototype.slice.call(arguments));
}
}
log("happy me", this);