According to this post it was in the beta, but it's not in the release?
|
Even better for fallback is this:
|
|||
|
|
|
console.log is only available after you have opened the Developer Tools (F12 to toggle it open and closed). Funny thing is that after you've opened it, you can close it, then still post to it via console.log calls, and those will be seen when you reopen it. I'm thinking that is a bug of sorts, and may be fixed, but we shall see. I'll probably just use something like this:
and even simpler:
|
|||||||||||||||||||
|
|
It's worth noting that |
|||||||||||
|
|
I really like the approach posted by "orange80". It's elegant because you can set it once and forget it. The other approaches require you to do something different (call something other than plain I've taken it a step further, by wrapping the code in a utility function that you can call once at the beginning of your javascript, anywhere as long as it's before any logging. (I'm installing this in my company's event data router product. It will help simplify the cross-browser design of its new admin interface.)
|
||||
|
|
Assuming you don't care about a fallback to alert, here's an even more concise way to workaround Internet Explorer's shortcomings:
|
||||
|
|
If you get "undefined" to all of your console.log calls, that probably means you still have an old firebuglite loaded (firebug.js). It will override all the valid functions of IE8's console.log even though they do exist. This is what happened to me anyway. Check for other code overriding the console object. |
|||||
|
if (window.console && 'function' === typeof window.console.log) {
window.console.log(o);
}
|
|||||
|
|
This is my take on the various answers. I wanted to actually see the logged messages, even if I did not have the IE console open when they were fired, so I push them into a console.messages array that I create. I also added a function console.dump to facilitate viewing the whole log. This solutions also "handles" the other Console methods (which I believe all originate from the Firebug Console API) Finally, this solution is in the form of an IIFE, so it does not pollute the global scope. The fallback function argument is defined at the bottom of the code. I just drop it in my master JS file which is included on every page, and forget about it.
|
|||
|
|
|
It works in IE8. Open IE8's Developer Tools by hitting F12.
|
|||||||||
|
|
firebug bookmarklet includes console.log |
|||
|
|
|
Try this one by Sir Paul Irish http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/ |
|||
|
|
console.logis there in IE8, but theconsoleobject isn't created until you open DevTools. Therefore, a call toconsole.logmay result in an error, for example if it occurs on page load before you have a chance to open the dev tools. The winning answer here explains it in more detail. – SDC Jan 28 at 15:31