Debugging JavaScript with source maps in IE7, IE8, IE9 and IE10?

I did not find a way to debug using source maps in Internet Explorer <11.

Does visual studio support debugging with source JavaScript maps?

I am using Visual Studio 2010 with IE7 and IE8. He doesn't seem to know about the source maps. Is there some kind of extension or something else?

+7
internet-explorer-8 internet-explorer-9 internet-explorer-7 internet-explorer-10 source-maps
source share
2 answers

I honestly think that you will fight here. Visual Studio does not support it, as it exits from it into IE11 dev tools. Older versions of IE are not visible.

In my opinion, the closest access to you is to use IE11 compatibility modes to emulate older versions of IE, and not (or also) use real copies of older versions of IE.

I know, like anyone, that the compatibility mode is not an ideal emulation, but I see no other way to do what you ask.

The only other option I can offer you is to deploy your JavaScript in a non-minimized form, at least for those old browsers, while you are trying to debug them.

+1
source share

The latest version of Visual Studio supports JavaScript source maps with IE7 up.

You must use your own debugger.

0
source share

All Articles