I have an object I need to examine in IE8.
I tried the developer tools and console.log, their Firebug equivalent.
However, when I output the object to the log:<
@Chris commented @Andy's answer with the simple solution: Use console.dir(myObj) to get all the details printed out in the console in IE. Thanks Chris!