taw
taw

Reputation: 18841

What are best firebug equivalents for other browsers?

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

Answers (9)

kennebec
kennebec

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

Andrey Yatsyk
Andrey Yatsyk

Reputation: 486

  • Firebug Lite - any up-to-date browser, but limited
  • IE - number of options depending of IE version and do you have Visual Studio
  • Opera - Dragonfly
  • Webkit based browsers have inspector and debugger in menu

IMHO Firebug is the best tool but could be used only on Firefox

Upvotes: 2

Daniel Vassallo
Daniel Vassallo

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

Randy Simon
Randy Simon

Reputation: 3324

IE has the developer toolbar.

Upvotes: 0

Ilya Volodin
Ilya Volodin

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

Ross
Ross

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

Michael Williamson
Michael Williamson

Reputation: 11438

How about Firebug Lite? It claims to work in IE, Opera and Safari by simply being a Javascript file.

Upvotes: 0

Luca Matteis
Luca Matteis

Reputation: 29267

Firebug Lite

Upvotes: 7

Dustin Laine
Dustin Laine

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

Related Questions