Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make IE 8's javascript console give more info than "{...}" for objects

I'm trying to debug an issue that only seems to occur in IE 7 and 8, and the debugger's console is being utterly useless.

Any time I type in an expression that results in an object it just prints "{...}" to the console. I need to inspect the returned object, but it gives me no easy way to do so.

Is there any way to get this to behave more like Chrome's debug tools or Firebug, both which let me actually inspect the object?

like image 526
Herms Avatar asked Sep 03 '10 18:09

Herms


1 Answers

You can always add a "watch expression" - in this way, it also displays the {...}, but it is expandable and you can see the internals of the object.

like image 78
naivists Avatar answered Oct 13 '22 01:10

naivists