vote up 2 vote down star

Possible Duplicate:
Firebug for IE

To help me to debug and understand javascript in IE6?

flag

74% accept rate

closed as exact duplicate by Crescent Fresh, Eduardo Molteni, Mauricio Scheffer, Shog9, Adam Bellaire Sep 9 at 15:29

6 Answers

vote up 4 vote down

For the DOM Inspector, try the Internet Explorer Developer Toolbar.

For the Net tab, try Fiddler.

For Javascript debugging, try Visual Web Developer 2008 Express Edition. (Or a higher edition of Visual Studio)

Also, try DebugBar.

link|flag
vote up 2 vote down

I'm sure it's missing essential features, but have you looked at Firebug Lite?

link|flag
vote up 2 vote down

ie developer toolbar does some of what firebug does, but for debugging javascript you need visual studio. maybe visual web express works too. not sure though. heres how to do it with visual studio

link|flag
vote up 1 vote down

First off, I simply must ask: Why? Unless your web app has design restrictions that state that it absolutely MUST run in IE6, please do the world a favor and code against at least IE7/8. They're faster, safer, and render in a more standards compliant way. (Of course, if I had my way IE would die altogether, but that's a different story)

Aside from that, though, IE6 can be debugged with Visual Studio, Microsoft Script Debugger, or Microsoft Script Editor. The basics are available here. It's not firebug, but it's also not a half bad option.

link|flag
1  
Do you think I debug IE6 for pleasure? Of course not!, if it was up to me I would force everyone to use Google Chrome. but... some times there is legacy code that we have to ... etc. etc. As for VS I don't think I want to install that just to debug js in ie6. – Oscar Reyes Sep 9 at 2:05
+1 to negate the -1. @Toji offered a legitimate alternative, and he's right. While project specifications may force testing in IE6, that doesn't mean you have to develop in IE6. – TrueWill Sep 9 at 2:10
-1 for the IE rant, just answer the question. – Kev Sep 9 at 2:16
While it has a value, it is not an answer. It would fit better in the comments section. If I have asked "Do you think is good idea to develop a new app in IE6", I would mark this as Accepted. I wouldn't dv him either. It is just, not that helpful for me. bit.ly/S6Kdh – Oscar Reyes Sep 9 at 2:17
For my part, I have seen far too many web developers that code exclusively against IE6 simply because they think it's still the dominant browser. While Internet Explorer as a whole still makes up ~60% of browsing, IE6 on it's own has fallen to ~12-15% by most statistics. As such, the need to code exclusively against it (except in certain upgrade-paranoid corporate situations) is massively diminished, but a surprising number of Web Developers don't seem to be aware of that fact. I was merely asserting that it was a requirement, and if not that there were better alternatives. – Toji Sep 9 at 15:03
vote up 0 vote down

I'm personally use DebugBar. The feature might not be as good as Firebug but good enough for me to find the problem you have in IE6 work fine on IE7 and IE8 too.

So maybe you should give it a try.

link|flag
vote up 0 vote down

IE8's inbuilt Developer Tools are great; and while the JS debugging isn't as useful as Visual Studio it's much better than Firebug in my opinion. Between that and the Compatibility View Browser Mode I can handle all my IE6 development needs.

link|flag

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