I need to debug JavaScript in Internet Explorer 7.

Unfortunately, its default debugger doesn't provide me with much information. It tells me the page that the error showed up on (not the specific script) and gives me a line number. I don't know if that is related to my problem.

It'd be nice if it could narrow down the error to a line number on a specific script (like Firebug can).

Is there an addon to debug JavaScript in IE7 like Firebug does in Firefox?

Thank you!

See also:

Does IE7 have a “developer mode” or plugin like Firefox/Chrome/Safari?

link|improve this question

feedback

13 Answers

up vote 60 down vote accepted

Web Development Helper is very good.

The IE Dev Toolbar is often helpful, but unfortunately doesn't do script debugging

link|improve this answer
1  
Worth noting, perhaps, is that you have to turn "disable debugging" off in the advanced options. – Yar Aug 25 '11 at 18:45
12  
I don't see any script debugging options in the IE Dev Toolbar, and the lastest version of Web Development Helper isn't working, even after changing my advanced preferences and restarting IE7. – stevebot Aug 30 '11 at 16:14
1  
I just installed WDH and it worked fine on IE7. – Ates Goral Feb 15 at 16:14
feedback

The hard truth is: the only good debugger for IE is Visual Studio.

If you don't have money for the real deal, download free Visual Web Developer 2008 Express Edition. While the former allows you to attach debugger to already running IE, the latter doesn't (at least previous versions I used didn't allow that). If this is still the case, the trick is to create a simple project with one empty web page, "run" it (it starts the browser), now navigate to whatever page you want to debug, and start debugging.

Microsoft gives away full Visual Studio on different events, usually with license restrictions, but they allow tinkering at home. Check their schedule and the list of freebies.

Another hint: try to debug your web application with other browsers first. I had a great success with Opera. Somehow Opera's emulation of IE and its bugs was pretty close, but the debugger is much better.

link|improve this answer
for step-by-step instructions, see @mitjak's answer – rymo Mar 23 at 19:35
feedback

I've found DebugBar.

Not as good as Firebug, but close.

link|improve this answer
3  
still, way better than ie dev toolbar – Sam Saffron Jan 23 '09 at 0:37
2  
I don't know why this isn't the accepted answer. By far better than any other debugger for IE. – Tres Nov 15 '11 at 3:38
feedback

you might want to try microsoft script debugger it's pretty old but it's quite useful in the sense if you stumble on any javascript error, the debugger will popup to show you which line is messing up. it could get irrating sometimes when you do normal surfing, but you can turn if off.

here's a good startup on how to use this tool too. HOW-TO: Debug JavaScript in Internet Explorer

link|improve this answer
+1 worked for me :) – AamirAfridi.com Nov 17 '11 at 15:57
feedback

In IE7, you can bring up firebug lite for the current page by pasting the following in the address bar:

javascript:var firebug=document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);

See http://getfirebug.com/lite.html.

link|improve this answer
1  
Firebug lite doesn't do Javascript – Casebash Jan 25 at 3:56
feedback

Microsoft Script Editor is indeed an option, and of the ones I've tried one of the more stable ones -- the debugger in IE8 is great but for some reason whenever I start the Developer Tools it takes IE8 a while, sometimes up to a minute, to inspect my page's DOM tree. And afterwards it seems to want to do it on every page refresh which is a torture.

You can inspect contents of variables in Microsoft Script editor: if you poke around under Debug > Window you can turn on local variable inspection, watching etc.

The other option, Visual Web Dev, while bulky, works reasonably well. To set it up, do this (stolen from here):

  1. Debugging should be turned on in IE. Go into Tools > Internet Options > Advanced and check that Disable Script Debugging (Internet Explorer) is unchecked and Display a notification about every script error is checked
  2. Create a new empty web project inside of VWD
  3. Right-click on the site in the Solutions Explorer on the top right, go to Browse With and make sure your default browser is set to IE (it's reasonable to assume if you're a web developer IE is not your default browser in which case that won't be the default.. by default)
  4. Hit F5, IE will open up. Browse to the page you want to debug.
  5. VWD will now open up any time you have a script error or if you set a breakpoint in one of the JS files. Debug away!

UPDATE: By the way, if you experience the same slowdowns as me with IE8's otherwise decent debugger, there is a workaround -- if you encounter or make IE encounter an error so that it pops up the "Do you want to debug" dialogue and hit Yes, the debugger will come up pretty much instantly. It seems like if you go "straight" into debugging mode the Dev Tools never inspect the DOM. It's only when you hit F12 that it does.

link|improve this answer
I'd have to test this out some more but so far it seems like the IE8 debugger works faster when browsing in compatibility mode. Go figure! – mitjak May 15 '09 at 16:48
If you're using the Express (free) version of VWD, make sure you've closed ALL IE windows before step 4 - VWD has to be the one to start IE fresh so that it "owns" it. – rymo Mar 23 at 19:39
feedback

IE8 has much improved developer tools. Until then it's best to write javascript for firefox first and then debug IE using alert() statements.

link|improve this answer
Can't wait for IE8 (so long as it lives up to the hype - I've yet to download the beta) – alex Dec 12 '08 at 2:19
Now that it's out I've udpated, and I must say that I like the debugger even better than firebug's :) – Joel Coehoorn Mar 31 '09 at 21:38
@Joel, although the debugger is great - one thing that annoys me (that Firebug has) is a right click context menu where you can choose "inspect element". To my knowledge, in IE8 you have to launch the developer tools, then click the arrow, then find the element you want to inspect. – alex Sep 3 '09 at 0:33
feedback

It's not a full debugger, but my DP_DEBUG extensions provides some (I think) usful functionality and they work in IE, Firefox and Opera (9+).

You can "dump" visual representations of complex JavaScript objects (even system objects), do simplified logging and timing. The component provides simple methods to enable or disable it so that you can leave the debugger in place for production work if you like.

DP_Debug

link|improve this answer
feedback

Microsoft Script Editor can be used to debug Javascript in IE. It's less buggy than Microsoft Script Debugger but has the same basic functionality, which unfortunately is pretty much limited to stepping through execution. I can't seem to inspect variables or any handy stuff like that. Also, it only shipped with Office XP/2003 for some bizarre reason. More info here if you're game.

I downloaded the Visual Web Developer 2008 Express Edition mentioned by Eugene Lazutkin but haven't had a chance to try it yet. I'd recommend trying that before Script Editor/Debugger.

link|improve this answer
feedback

Use Internet Explorer 8. Then Try the developer tool.. You can debug based on IE 7 also in compatibility mode

link|improve this answer
13  
IE7 != IE8 compat mode. There are incompatibilities. – thorn Jan 7 '10 at 21:32
1  
+1 At least IE8 tells you the file name of the script that's causing the error. – Colonel Sponsz Jan 22 '10 at 15:16
@thorn, but there is an IE7 mode. (Maybe there wasn't, before?) So: regular, compatibility mode, IE7 mode. – ANeves Mar 15 '11 at 15:23
@ANeves it's just different names for the same thing – thorn Mar 15 '11 at 15:44
1  
@ANeves Looks like "IE7 mode" is just "compatibility mode" with a user agent changed to that used by IE7. But I want to emphasize again that the compatibility mode isn't that compatible. E.g., reseting a style property via jQuery looks like this in IE7 (and other browsers): $my.css('z-index', null). In IE8, this code throws an error, even in the so called compatibility mode. So I had to write a code like this: $my.css('z-index', ie8 ? 'auto' : null) – thorn Mar 18 '11 at 18:41
show 5 more comments
feedback

Hey I came across the same problem and found this the application IETESTER. It's pretty awesome, it's an app that has IE 5.5,6, and 7 bundled into it. It doesn't matter what IE version you currently have. This allows you to have multiple versions side by side.

If you enable javascript debugging in IE options and have Visual Studio installed you can even debug the javascript in VS with all the debug options available to you(watches, conditional breakpoints ,etc.)

If you want to start debugging before an error occurs you simply have to put the line

debugger;

into your JS code and this bring you into VS to begin debugging after this statement.

This is absolutely amazing to me for testing backward compatibility for JS code.

link|improve this answer
feedback

FireBug Lite: http://getfirebug.com/firebuglite

link|improve this answer
its will work for IE7 also? – softm Jan 6 at 23:59
From the home page: "Compatible with all major browsers: IE6+" – slf Jan 8 at 2:06
Firebug Lite doesn't support javascript debugging. – DMan Jan 25 at 4:29
@DMan gasp your right! it seems folks overcome this with Crossfire: getfirebug.com/developer/api/crossfire0.1/symbols/… – slf Jan 25 at 14:15
feedback

The IE9 developer tools worked for me. Just set the "Browser Mode" menu item to IE7.

link|improve this answer
2  
This is useful, but the emulated IE7 isn't quite the same. – alex Feb 23 at 2:19
I guess it depends. If I can reproduce an issue in IE9's emulated mode, then I'll fix it there. Otherwise, Firebug Lite is a good solution - though you'll need to have IE7 installed somewhere. – Peter Tseng Mar 1 at 1:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.