Reputation: 18841
I sometimes need to debug JS in other browsers, and it would be really nice if they all had Firebug - failing that, what's the closest they have?
Upvotes: 4
Views: 322
Reputation: 104780
Opera has the excellent dragonfly developer console, which can profile your code (to find bottlenecks and redundent code) as well as step through breakpoints.
Upvotes: 2
Reputation: 486
IMHO Firebug is the best tool but could be used only on Firefox
Upvotes: 2
Reputation: 344311
For Safari and Google Chrome, the Developer Tools.
Just right-click anywhere and select "Inspect Element", or use the Ctrl + Shift + J shortcut:
Developer Tools http://img79.imageshack.us/img79/426/devtools.png
Upvotes: 1
Reputation: 11256
IE8 - Developer Tools (F12)
IE6,7,8 - Visual Studio/Microsoft Script Debugger/DynaTrace (for tracing JS, not debugging)
Chrome, Safari - Developer Tools.
Upvotes: 3
Reputation: 14415
Firebug can be used in other browser with it's javascript version : hhttp://getfirebug.com/firebuglite
Anyway, in Safari there is Web Inspector which is brilliant.
Upvotes: 0
Reputation: 11438
How about Firebug Lite? It claims to work in IE, Opera and Safari by simply being a Javascript file.
Upvotes: 0
Reputation: 38503
Fiddler is the one I use: http://www.fiddler2.com/fiddler2/
There is Charles: http://www.charlesproxy.com/ Also WireShark: http://www.wireshark.org/
Upvotes: 0