Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

For those of you who do front-end development, what browser do you tend to use? I mean, of course you have to eventually do some work in whatever browsers you intend to support, but what do you prefer for the primary development, and why?

share|improve this question
Does Silverlight development count? – ChrisF Sep 8 '10 at 18:26

closed as not constructive by Walter, gnat, ElYusubov, MainMa, Thomas Owens Nov 12 '12 at 13:22

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 10 down vote accepted

Firefox / Firebug. Also chrome has a similar built in dev environment.

But of course you'll have to use all browsers at some point to verify it works.

share|improve this answer

Chrome.

In my experience, it is the best browser for everything outside of a corporate limitation. The console and development tools are sufficiently powerful to rival Firebug.

I will test in IE8 as well and have found that if you can make something work in Chrome and IE8, the odds are that the rest of the browsers will do just fine.

share|improve this answer
When I first found the Dev console in Chrome, it took me back that it was as (or more) powerful than Firebug. And its built in! – TheLQ Sep 8 '10 at 21:00
@TheLQ - Where is it? – burnt_hand Sep 30 '10 at 10:04
Found it - "Spanner -> Tools -> Developer Tools" or just Ctrl+Shift+I – burnt_hand Sep 30 '10 at 10:07

Firefox and Chrome. Mostly because of the development plugins. IETab makes it easy to see how IE has screwed up your web page.

share|improve this answer
IETab... I'm going to have to take a look at that – TheLQ Sep 8 '10 at 21:00

Firefox (3.6), primarly because I use it also for daily navigation, then because of Firebug and some other plugins (TamperData above all).

share|improve this answer

Firefox with the following plugins

  • Firebug - for inspecting dom elements, javascript debugging and live css testing
  • LiveHTTPHeaders - see if a server is behaving as it should, especially with redirects and setting cookies.
  • Web Develpoer Toolbar - Disable caching. Outline tables and divs.
  • Console2 - improves the standard error console that comes with Firefox.

These plugins overlap each other in areas, but each offer something unique that I couldn't live without.

share|improve this answer

I use Safari and/or Chrome (on the Mac). Why? Firebug is lovely, but I use Firefox as my main browser and I've got a bunch of quite bizarre extensions set up on there. I mean, bizarre to the point where other programmers say "what the hell?" when they look at my screen. This is not a good testing environment, but it is perfect for me. When I'm testing front-end code, I need to be using a normal browser without all my weird extensions. Safari or Chrome fit perfectly. Once I'm done with development, I'll boot up a clean Windows VM with Internet Explorer and Firefox in it to do final testing, and use a clean account on the Mac for testing in all the browsers on there.

share|improve this answer

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