vote up 17 vote down star
7

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!

Note: I haven't been able to find this question on here and it isn't listed as 'related questions' but I hope it's not a duplicate (as I'd imagine a lot of web developers would have pondered this).

See also:

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

flag

9 Answers

vote up 11 vote down check

IE Dev Toolbar and Web Development Helper are very good.

link|flag
vote up 2 vote down

I've found http://www.debugbar.com

Not as good as Firebug

link|flag
still, way better than ie dev toolbar – Sam Saffron Jan 23 at 0:37
vote up 0 vote down

i have heard of a javascript file you can include in the web page that does the same thing, but nothing that works straight from the browser a la firebug. I think its called firebug lite

link|flag
Not nearly as good as Firebug for Firefox. – alex Dec 12 '08 at 1:48
of course its not nearly as good as firebug for firefox. It is trying to emulate firebug for IE. – milesgroman Dec 12 '08 at 1:52
I don't try to be. – alex Dec 12 '08 at 1:52
If you read my question, I asked if there was something similar to Firebug (a browser addon). That's why I posted that comment. I don't think I deserved 'are you stupid?' – alex Dec 12 '08 at 1:54
yea i know, sorry, i read the question as "I am looking for X in IE.". And then your comment to me was "Its not as good as X in FF". And I was thinking, "ok, but we are talking about IE here". Here, let me visit your site, ill give you some traffic. – milesgroman Dec 12 '08 at 1:59
show 1 more comment
vote up 4 vote down

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|flag
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 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 at 0:33
vote up 9 vote down

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|flag
vote up 3 vote down

hi, 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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
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! – Dmitry Kichenko May 15 at 16:48

Your Answer

Get an OpenID
or

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