Alec Smart
Alec Smart

Reputation: 95980

Debugging JavaScript in Internet Explorer

Before you mark this as duplicate, please note that the other questions are all over a year old. We are in 2011, and we still don't have half a decent I.E. debugger like Firebug. The only few solutions are paid.

Are there any tools I am missing? How do you go about debugging JS in IE?

Upvotes: 1

Views: 461

Answers (4)

Tim Down
Tim Down

Reputation: 324717

If you can deal with using just logging rather than a full-on debugger, you could use a cross-browser logging library such as my own log4javascript.

Upvotes: 0

Johannes Fahrenkrug
Johannes Fahrenkrug

Reputation: 44836

There's also Firebug Lite. Also, IE9 comes with a full fledged JS debugger.

Upvotes: 0

JohnP
JohnP

Reputation: 50029

IE has the IE Developer toolbar. It's been available since IE7. It's not as good as Firebug but it's better than nothing and it's getting better with each version

Forgot to include the link : http://www.microsoft.com/downloads/en/details.aspx?FamilyID=95e06cbe-4940-4218-b75d-b8856fced535

Upvotes: 3

scheffield
scheffield

Reputation: 6787

The Developer Tools of IE8. You even got a console object to log with. And in IE8 you can switch to IE7 engine.

Upvotes: 1

Related Questions