Search code examples
javascriptgoogle-chromeie-developer-tools

Is there a way IE 11 can show the inside of a object like chrome ? Maybe a plugin?


In chrome when the Front End people do a Console.Log of an object I can see the whole tree. With IE I only see the word [Object]. Any work around so I can see the tree in IE 11 ?


Solution

  • To display an inspectable JavaScript object, send it to the console using console.dir().

    Example: console.dir(obj);

    http://msdn.microsoft.com/en-us/library/ie/dn255006%28v=vs.85%29.aspx