vote up 5 vote down star
1

Firefox has Web Developer plugin and Firebug for troubleshooting html/css/javascript issues. Google Chrome and Safari have a very similar console and right-click options for "Inspect Element".

Does IE7 have anything similar for troubleshooting layout/html/css issues?

flag

8 Answers

vote up 15 vote down check

Yes - The Internet Explorer Developer Toolbar

Download details: Internet Explorer Developer Toolbar

link|flag
1  
Tt works poorly in comparison to Firebug, debugbar is better. – jcollum Jan 30 at 19:15
vote up 1 vote down

You can also use Firebug Lite, wich works on IE, Opera and Safari.

Its a javscript implementation that you can load with a simple bookmarklet.

As SO doesn't allow javascript, here is the bookmarlet source code (just copy paste to your browser location bar (always make sure its safe before executing random javascript (In any case check the first link)))

javascript:var%20firebug=document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);

Firebug Lite supports all basic commands of Firebug.

link|flag
vote up 0 vote down

You can also use IE watch, which is like firebug, but you need to buy it. It is a 30 days trail version.

link|flag
vote up 4 vote down

I have also used Debug Bar.

link|flag
vote up -2 vote down

Actually, the best add-on for developers to IE would be Fiddler. It has a number of features that the other browsers possess.

link|flag
Fiddler looks like it has some interesting features for debugging HTTP issues, but I don't see anything for troubleshooting HTML/CSS layout issues - which is what I was really asking for. – matt b Sep 18 '08 at 16:32
1  
-1, Fiddler is not related to the question – jcollum Jan 30 at 19:14
vote up 1 vote down

There's a toolbar you can get but it still doesn't match up to Firefox, especially for javascript debugging.

IE8 will be a huge improvement for development.

link|flag
vote up 7 vote down

Check out the IE Developer toolboar.

link|flag
vote up 2 vote down

Web Development Helper

Web Development Helper is a free browser extension for Internet Explorer that provides a set of tools and utilities for the Web developer, esp. Ajax and ASP.NET developers. The tool provides features such as a DOM inspector, an HTTP tracing tool, and script diagnostics and immediate window. Web Development Helper works against IE6+, and requires the .NET Framework 2.0 or greater to be installed on the machine. Once installed, the tool can be activated using the Tools | Web Development Helper command. You can also customize your browser's toolbar to add a button for this command to facilitate frequest use. Clicking on the menu command or browser button brings up the tool's console window and set of commands. Page Features: DOM inspector allows viewing all elements, selected elements, or elements matching an ID or CSS class, their attributes and styles. Capturing a screen shot of the current page. Viewing page information such as metadata, tags, and linked resources. .......

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.