vote up 8 vote down star
5

Is there a better way to debug JavaScript than MS Script Editor? Like FireBug, but not like FireBug Lite.

Thanks,

flag
Is it better javascript tools you need or is more about extra features like DOM inspector? – AnthonyWJones Oct 4 '08 at 12:59

7 Answers

vote up 6 vote down check

Use Visual Studio 2008.

The Web Development Helper from Nikhilk is useful as is the Internet Explorer Developer Toolbar (http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en). They are not as good as FireBug though :-(

link|flag
Agreed this is the best way for debugging JS from within IE. – Slace Oct 4 '08 at 12:59
Using a raw "debugger" statement in your JavaScript will then allow you to break and jump into VS. – James Baker Oct 4 '08 at 18:32
vote up 3 vote down

Though not strictly debuggers, these are useful tools for your arsenal

link|flag
vote up 0 vote down

I've used IE WebDeveloper. It's not free and not as nice as Firebug, but got the job done for me. http://www.ieinspector.com/dominspector/index.html

link|flag
vote up 0 vote down

The only other debugger for Javascript in the IE context is Visual Studio but it'll cost you. What problems are you having with script debugger that leads to think you need a better debugger?

I suspect that what you are after are the additional features that aren't specifically about debugging javascript but analysing the HTML DOM that has been modified by the javascript and the monitoring of the conversation with the server.

The IE developer tool bar I find particularly invaluable for debugging web apps as is fiddler.

link|flag
vote up 0 vote down

You can download the Microsoft Visual Web Developer 2008 Express Edition for free.

link|flag
vote up 0 vote down

I would try and go for DebugBar. It's not as nice as Firebug, but it's very useful for javascript debugging...

link|flag
vote up 0 vote down

There is a blog post that goes over most of the known ways to debug javascript in IE, with pros and cons.

link|flag

Your Answer

Get an OpenID
or

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