Evik James
Evik James

Reputation: 10503

Is there a FireBug equivalent for IE to debug JavaScript?

I am having a real problem fixing some JavaScript in IE. I am sooooo used to using FireBug that anything else is like driving blindfolded.

Is there a tool that can help me look at my code and spot big IE challenges?

Upvotes: 2

Views: 859

Answers (6)

DShah
DShah

Reputation: 9876

Now, there is a firebug for IE also... For IE it is called WEB DEVELOPMENT HELPER go to below link.. http://projects.nikhilk.net/WebDevHelper

Upvotes: 1

JaredMcAteer
JaredMcAteer

Reputation: 22545

IE8 on come with Developer tools built in and are accessed by pressing F12. Otherwise you must use the Microsoft Script Debugger (free download) or Firebug Lite.

Upvotes: 0

jcoder
jcoder

Reputation: 30055

There is developer tools - in IE8 at least, press F12 or Tools / Developer Tools from the menu. I'm not able to test of IE9 is the same menu option but it does have it.

Upvotes: 0

kinakuta
kinakuta

Reputation: 9037

It's nowhere near as good or useful as Firebug, but hit F12 and you get IE's developer tool equivalent.

Upvotes: 0

sushil bharwani
sushil bharwani

Reputation: 30207

Microsoft Script Debugger --- visual interdev

Upvotes: 0

g.d.d.c
g.d.d.c

Reputation: 48028

Firebug Lite, or the IE Developer Tools are both possible options.

Upvotes: 4

Related Questions