Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since MS will stop supporting anything before IE 8 soon, I am not sure if I should make my web app compatible with those older browsers. I know there are still people using them but I don't know if there are enough to make it worth while.

Any suggestions as to how to decide what version to support?

Thanks.

share|improve this question
Interesting question would be, will users of IE6 be willing to adopt the technology/web app? They've a track record of not liking new technology. – Ian Apr 22 '10 at 13:26
1  
Microsoft will stop supporting IE7 soon? Do you have a source? – Šime Vidas Feb 6 '11 at 22:29

closed as off topic by Jeremy Banks, M42, Mark, Roman C, nickhar Apr 29 at 10:26

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

9 Answers

up vote 3 down vote accepted

This question could provoke a bit of argument, there are a lot of people out there still avidly supporting IE6, and others like me who wish that older browsers would just magically disappear so we don't have to consider them.

Anyway, here's an answer for your question: you need to define "web app". If you mean a web application that is used by businesses in a LOB type of way, then you should be able to dictate the minimum requirements. For the web app i am currently working on, we have a minimum of IE8 or FFox 3.6. In only one case have we had a client who could not upgrade from IE6 because they were still using a critical legacy app that was built for IE6, so they use FFox for our app instead.

If your web app is going to be exposed to the wider world, and any random John Q. Public can use it, then you certainly still need to consider the numbers for each browser, and then make a decision of whether the work involved in supporting that browser is worth it for the number of people using it.

share|improve this answer

None.

Seriously. You should not support IE. It stinks.


Edit: since I originally wrote this answer, Internet Explorer 9 has been released. IE9 offers significant improvements over its predecessors and is a much more worthy competitor in the browser market.

Having said that, it still has a long way to go before I would consider using it over Chrome (my default browser of choice). Since I use Ubuntu, Microsoft would need to release a Linux version of their browser - and because Halley's comet will return long before that happens, I still recommend against using IE.

share|improve this answer
5  
While you are entirely correct, we haven't converted the masses yet. – Rob Apr 22 '10 at 4:10
1  
@Rob: Yes, unfortunately. I mostly posted this for a joke. (I am quite surprised nobody else posted it, though...) – Nathan Osman Apr 22 '10 at 4:32
14  
+1 because this is the right way to think, even if it isn't "popular" (yet). – jathanism Apr 22 '10 at 13:25
1  
@George Edison: I would have but risk getting downvoted :) – Rob Apr 22 '10 at 14:27
4  
+1 I totally share your passion. – Nikita Rybak Apr 3 '11 at 11:17

It depends on whether you need to make it work for as many people as possible. I can only speak for the website I've got Google Analytics on, but about 20% of the visits are IE6, another 15% are IE7. If you can afford to drop a potential 35% of your audience, go for it.

(Here's a wikipedia article on browser share, with a breakdown of IE usage. The official stats are strikingly similar to those I cited above.)

share|improve this answer
3  
Not supporting a browser does not mean losing that audience. Users of bad browsers are used to how the web looks. – Rob Apr 22 '10 at 4:13

IE 7+.

Unless it's a legacy app and needs to target IE6 users. In any case, you should not support anything below IE5. But you should try to at least look good on IE4, even if you don't have full functionality.

Or just stick with IE7+.

share|improve this answer

Depends on the audience.

  • If you're Amazon.com, Ebay or Google, you're probably going to have to support every browser under the sun except perhaps Netscape 4.7 on Intel Solaris (Note I have actually used this combination while I did my B.Sc, but that was more than a decade ago).

  • If you're aiming at a broad web audience, IE7+, FF, Safari, Chrome and maybe Opera

  • If you're expecting users on corporate intranets, you may well have to support IE6+.

  • If you're aiming at mobile users, Opera and various mobile browsers.

share|improve this answer
1  
Google doesn't really support even IE 6 anymore - I tried to bring it up and I get a file download dialog :P – Nathan Osman Sep 21 '10 at 6:09

Our web app which is sold as a product to be installed on enterprise intranets suppoerts IE 7+. We dropped IE 6 recently and nobody complained thus far. Of course we also support Firefox, Safari, Opera and Chrome, but that's boring: my testing algorithm is as follows:

  • develop in Firefox
  • frequently test and fix on IE8 in compatibility mode
  • frequently test and fix on IE8 regular mode
  • sometimes test real IE 7 (so far IE8 in comp. mode has been 100% correct emulating IE7)
  • before release confirm that Opera, Safari and Chrome are still correct. These 3 are almost always correct provided Firefox works.
share|improve this answer
A solid HTML layout should yield little, if any, problems in IE 8 / 7. – Josh K May 4 '10 at 15:13

You should follow "progressive enhancement" -- provide the core features of the site to most if not all users; then, for the A-Grade browsers, provide the additional eye candy and features. With IE6 still being used by anywhere from 10 - 20% of web users, we can't ignore it completely.

However, we can follow the pattern of Youtube and Google: display a message telling the user to upgrade. If you go to YouTube on IE6, you can't even view any videos anymore. This is what you'll see:

YouTube

And here's Google Docs on IE6:

Google Docs

share|improve this answer

Take a look at Google Chrome Frame.

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – LittleBobbyTables Nov 20 '12 at 1:43

This is completely subjective. Here's my opinion on the matter.

Figure out what browser your target users are using/can use...

Option 1. If a high percentage (maybe 80%-100%?) of prospective users use modern browsers, consider graceful degradation. Make your site the best it can be then handle older browsers with "not supported, please upgrade" style messages.

Option 2. If a moderate percentage (maybe 20%+) of prospective users use older browsers, consider progressive enhancement. Make your site work for ALL users (i.e. plain html) then add bells and whistles for modern browsers.

If your site is public, there's a good chance it will fall into option 2. It's hard to tell what your user base will be. This may be less true if your site is targeted at a certain audience (e.g. If you're building an app for techies, you could almost guarantee they won't be using

If your site is private/PAYG, you have a bit of a standing to support "minimum browser specs". For some clients, this may not be feasible. I know of certain UK government branches that will only allow IE6 on their internal machines due to security concerns (I know, backwords huh!). Many clients will be able to define their minimum supported browsers. You can charge appropriately for building and maintenance costs.

Progressive enhancement is very popular amongst my colleagues. I'm not such a big fan. We're a software house providing bespoke SaaS on a client by client basis. We have a strict policy to make ALL applications progressively enhanced. I find this to be very inefficient and costly. Most clients don't require support for any browsers earlier than IE8, FF4, etc. Most (probably all) clients have full support for JS, ans CSS.

If you fall into option 1 but still feel the need to support the older browsers, consider Google Chrome Frame. This allows older IE versions to render websites using the Chrome engine. This could be part of your graceful degradation message:

Unfortunately, this feature is not supported on your browser. Consider upgrading your browser. If you are using Internet Explorer, install Google Chrome Frame to enable this feature. We would normally apologise for any inconvenience this causes, but it's your own dumb fault for using a rubbish browser.

(Disclaimer: Last sentence modified for humour only!)

To summarise my babbling, build your site based on your users' browser support, not on what you or anyone else thinks may be best practice. Don't fall into the 80-20 trap. It's easy to spend more than 80% of your time, supporting less than 20% of your users.

share|improve this answer

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