jAndy
jAndy

Reputation: 236162

Script Debugging in IE

I'm really interested which way you guys use to effectivly debug a large (let's say 1000 lines and more) javascript in IE7/8/9.

I'm so sick of reading a message like 'error in line 9328789237498" or "line 1" which totally makes no sense. No error description.

There must be something like Firebug? please? :)

Kind Regards

--Andy

Upvotes: 3

Views: 246

Answers (3)

i_am_jorf
i_am_jorf

Reputation: 54640

You can use Visual Studio to debug Javascript as well. Tools -> Internet Options -> Advanced -> Uncheck the boxes for disabling script debugging. Then run with Visual Studio attached to the IExplore process.

Upvotes: 0

Vivin Paliath
Vivin Paliath

Reputation: 95588

Checkout the Internet Explorer Developer Toolbar (more information at Internet Explorer Developer Tools). If you want Firebug, you can try out the (not as powerful) Firebug Lite.

Upvotes: 4

Justin Ethier
Justin Ethier

Reputation: 134255

IE 8 comes with Developer Tools, which is similar (but not quite as powerful) as firebug.

See: Discovering Internet Explorer Developer Tools

Upvotes: 4

Related Questions