Rob N
Rob N

Reputation: 16409

How to get IE8 Developer Tools to show me the line number of the Javascript error?

I've got an Angular app, lots of javascript. I load it up in IE8, and get an error that I'm not getting in other browsers. I open the Developer Tools, but it gives me only generic message. No stack trace, no line number. Here's a screen shot.

enter image description here

Is there something I can do to get the error location?

Upvotes: 2

Views: 1070

Answers (1)

suff trek
suff trek

Reputation: 39777

If you expand/scroll that part of Dev Tools you will see the line number and the source file where it happened. E.g.

Moreover - clicking on that line will bring you directly to the source.

Upvotes: 2

Related Questions