What are you using for JavaScript debugging besides Firebug?

What are your favorite JavaScript debugging tools besides Firebug?

Thanks Eric

Duplicate: JavaScript Debugger

+1


source to share


4 answers


For IE Developer Toolbar .

For Opera Dragonfly .



To output logs with multiple Blackbird browsers (although it currently has some CSS class names issues that need to be fixed).

+4


source


I am using a web developer extension - for DOM / CSS stuff, but this is usually JS related. For things that work in FF but not IE, I'm debugging Visual Studio. I also have the developer toolbar installed in IE and the Develop menu is enabled in Safari.



EDIT : There's also Venkman there .

+3


source


alert FTW !!!

+2


source


The Internet Explorer Developer Toolbar is definitely something that takes its toll on IE for debugging web development. It's better for DOM validation and browsing than firebug in my opinion, and much less powerful when it comes to javascript.

Google Chrome also comes with some handy developer tools, especially for javascript, just use Page Control (the page icon next to the address bar) → Developer and you will see the javascript debugger.

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

My favorite combination of IE toolbar for HTML + CSS and Firebug for JavaScript and other things that are a little tricky.

+1


source







All Articles