Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When to stop caring about a browser

The question is simple really, when is it time to finally pull the plug on a browser version and just not care about supporting it any more? As can probably be expected this is in regards to IE6 specifically right now. A site I'm working on right now has a mostly-finished design that needs to be integrated but most of the back-end functionality isn't expected to be done for another 6 or 7 months. Is it really worth fighting with IE6 as apposed to just skipping it and supporting IE7+ instead? Also, the site in question is targeted specifically at photographers, many of which I know for a fact are mac-heads.

like image 207
Steven Surowiec Avatar asked Feb 15 '09 18:02

Steven Surowiec


1 Answers

There's no magic answer to this question of course, though like the question the answer is simple. :)

You need to look at the data for visitors on that specific site, and then make a cost vs. benefit analysis, based on the extra effort it will take to support that browser vs. the number of visitors you expect to be using it.

There are other things you can do to make your life easier however. For example:

  • Use frameworks (eg jQuery) to abstract away browser differences and bugs.
  • Don't worry about pixel perfection cross-browser.
  • Send IE 6 a simpler style-sheet, or no style-sheet at all.

Your still supporting the browser in these cases, just not giving it the level of support that you might a modern standards compliant browser.

See Yahoo's Graded Browser Support policy.

like image 128
Andy Hume Avatar answered Sep 19 '22 13:09

Andy Hume