vote up 1 vote down star
1

What are your favorite JavaScript debugging tools besides Firebug?

Thanks, Eric

Duplicate: http://stackoverflow.com/questions/103155/javascript-debugger

flag
1  
I thought I had seen something similar before, but couldn't find it via search. – tvanfosson Dec 28 '08 at 2:58

closed as exact duplicate by John Sheehan Dec 28 '08 at 2:55

4 Answers

vote up 1 vote down

Internet Explorer Developer Toolbar is definitely one that rocks on IE for web development debugging. It's better for DOM inspection and browsing than firebug in my opinion and much less powerful when it comes to javascript.

Google Chrome also comes with some handy little developer tools, especially for javascript, just use Page Control (the page icon beside address bar) -> Developer and you'll see a javascript debugger there.

Opera has yet another developer menu: Tools -> Advanced -> Developer Tools (http://www.opera.com/dragonfly/).

My favorite is a combination of IE developer toolbar for HTML+CSS and Firebug for JavaScript and other stuff that's a little more sophisticated.

link|flag
vote up 2 vote down

I use the Web Developer extension -- for DOM/CSS stuff, but usually related to JS. For stuff that works in FF, but not in IE I debug in Visual Studio. I've also got the Developer Toolbar installed in IE and have the Develop menu turned on in Safari.

EDIT: There's also Venkman.

link|flag
vote up 0 vote down

alert FTW!!!

link|flag
vote up 3 vote down

For IE, Developer Toolbar.

For Opera, Dragonfly.

For cross-browser log output, Blackbird (though it currently has some CSS class naming issues that need to be resolved).

link|flag

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