JamesBrownIsDead
JamesBrownIsDead

Reputation: 4715

Debugging in IE

I've got this weird bug. The progress bar in IE's bottom-window status bar keeps incrementing very slowly after an Ajax POST. At least that's where I think the problem is.

How can I tell what the hell IE is doing that's causing the progress bar to keep going? In FireFox, I would just look at the Console tab in FireBug and see what's up.

I turned Fiddler on but it doesn't pick up any HTTP requests or responses being sent.

What can I do in IE?

Upvotes: 2

Views: 274

Answers (6)

Jignesh.Raj
Jignesh.Raj

Reputation: 5987

open IE ...thn press F12 ...here you will get many menus..to debug script choose "SCRIPT" option..and start debug...and if there is any error on page...thn u will get on Console option..also see on attach image...

enter image description here

Upvotes: 0

Opentuned
Opentuned

Reputation: 1517

i recently discovered this tool for earlier IE versions which can be used in combination with the IE debugger for network profiling and more behind the scenes debugging

http://www.ieinspector.com/httpanalyzer/

Upvotes: 0

L.Price
L.Price

Reputation:

I don't think there is a problem here, earnestly. IE has a bug where it shows that a request has not yet been completed when it has. This has been around for a while now, and I have tested my own applications against it. There is nothing happening and there are no connections waiting for a response, yet the browser still thinks there is an open connection.

Upvotes: 0

Mailman
Mailman

Reputation: 11

An another tool for checking HTTP requests is the Debugbar

Upvotes: 1

Andrew Dunaway
Andrew Dunaway

Reputation: 1226

I'm not very experienced in Web debugging but you might try the Developer Tools that come in Internet Explorer 8. It's under the Tools menu, or just hit F12. I think the Profiler tab may be helpful. I had heard somewhere that the IE8 Tools were created to mimic Firebug's feature set as closely as possible.

Upvotes: 1

Annie
Annie

Reputation: 6631

This might not help if Fiddler isn't picking anything up, but HttpWatch is a great http request debugging tool for IE.

Upvotes: 0

Related Questions