vote up 3 vote down star
3

I need an addon that assists Javascript (client-side) web dev in browsers other than Firefox, for which Firebug suffices.

Especially something for IE(7) and Opera(9) with which I'm currently experiencing issues.

Info about dev tools like Firebug, are welcome for any browsers.

flag

7 Answers

vote up 4 vote down check

Firebug Lite?

link|flag
Haha. Pretty damn good. – Jeremy Rudd May 1 at 8:25
Hope it is compatible on most browsers though! Yeah, should be, considering it is a dev tool. – Jeremy Rudd May 1 at 8:26
1  
@Jeremy Rudd: According to the Firebug Lite webpage, it works in IE, Opera, and Safari. – Steve May 1 at 8:30
wow..thats just awesome..did not know about this – Perpetualcoder May 1 at 8:32
vote up 2 vote down

For IE just get IE8, the built-in dev tools are pretty good. If you need to test IE7 behaviour use compatiblity mode. Of course you may wish to do a final test on IE7 itself (and you can download Script debugger and dev tools to work with IE7 but thats not as slick).

link|flag
Yeah, and the rendering engine is pretty good too, defeating the purpose of debugging issues with IE6 and IE7. – Jeremy Rudd May 1 at 8:21
1  
In compatability mode IE8 has the same rendering bugs as IE7. However the tools for analysing the DOM/CSS and debuging javascript are better. The question is about debugging not testing the two are separate issues. I'm fairly sure if you have a problem in IE7 you can reproduce on IE8 with compatability on however the tools for finding the problem are better on IE8. – AnthonyWJones May 1 at 8:26
Also note the question relates to Javascript debugging, the developer tool bar doesn't help there. – AnthonyWJones May 1 at 8:27
+1 for the clarifications. Keep it coming! – Jeremy Rudd May 1 at 8:29
vote up 1 vote down

IE Developer Toolbar

Opera? Never an option! Webkit may be more important.

link|flag
Great that it works with both IE7 and IE6. This is simply great. – Jeremy Rudd May 1 at 8:22
vote up 1 vote down

I use Developer Toolbar for IE.

link|flag
vote up 3 vote down

If you are using IE8 - Press F12 and you will see the fantastic developer tool window.

If you are using earlier versions IE Developer Toolbar maybe handy.

For Opera you can use DragonFly or this might help

link|flag
vote up 1 vote down

Safari 4's Web Inspector is great.

Steve

link|flag
Safari for windows? I don't have a Mac. – Jeremy Rudd May 1 at 8:31
1  
Apple do make a version of Safari for Windows, if that's what you mean. I've only used the Web Inspector in Safari 4 for Mac, but it should be the same in the Windows version. – Steve May 1 at 8:36
1  
Safari is using Webkit, so you can simply go debug with Google Chrome (also using Webkit) and forget about Safari. – Francis May 1 at 8:42
vote up 1 vote down

Safari 4 (beta) (for both Mac and PC) may help you, but after you download it and install it you'll need to go into your preferences and turn on the Developer settings, then restart Safari. This will give you a Developer file menu item with choices to change the User Agent, JS Profiler and Debugger and a great little Web Inspector window (either docked or floating) which gives you access to (X)HTML, CSS, Resources (assets and timing), JS, JS Profiling and HTML5 database.

In addition it gives you a JavaScript console so you can make calls into the current rendered page to check for settings, variables, DOM walking and many other various little goodies, all in real-time. Quite powerful and really nice.

Once you've tweeked what you're tweeking, simply copy your changes (or note them then) make the changes to your source. I've only started accessing the power of it and I have to say, it's so far been a real joy to use - surprisingly so.

Remember if this answer helps or you just plain like it, "knock it up a notch!" Bam! (^_^)

link|flag

Your Answer

Get an OpenID
or

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