Reputation: 16409
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.
Is there something I can do to get the error location?
Upvotes: 2
Views: 1070
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