abrahab
abrahab

Reputation: 2496

debugging solutions for opera and internet explorer

Searching for solution or methods of debugging my jquery script under the Opera/IE browser. Seems that its not send ajax $.post() request or send it to incorrect address or something similar. There is no problems at Firefox. Maybe somebody know addons or other hacks to check what actual data send by the browser at buckground (request headers, answers)? Where is something similar to Firefox Javascript Console at Opera and Internet Explorer?

Upvotes: 2

Views: 135

Answers (3)

Mathew Thompson
Mathew Thompson

Reputation: 56459

I use fiddler2, its brilliant and will work with all browsers as it is a standalone application.

Fiddler2 Web debugging proxy

Upvotes: 1

strah
strah

Reputation: 6742

As OptimusCrime says there is a developer tool in IE.

It's worth mentioning that IE (7 and 8) will throw an error if the tool is disabled and there is any reference to the console in your code.

Upvotes: 0

OptimusCrime
OptimusCrime

Reputation: 14863

Opera has a developer-tool called Dragonfly. Simply rightclick anywhere on your page and select "Inspect element". Here you have console, inspector mode, NET and so on. Everything you need.

IE also has a developer tool. You access this by hitting F12.

Based on what you need, these tools should be enough.

Upvotes: 2

Related Questions