How to handle older browsers in a SaaS?

The private beta of my product works well on IE9 but falls apart on IE8.

  • Should I just accept that, and let people stuck on older browsers get by as best they can?
  • Or should I detect on the server that the user has an unsupported browser and send them a special ultra-simple “sorry you can’t” page?
  • Or should I lift my game and make sure IE8 users get some joy?
  • Or is there a better strategy?
1 Like

Do you have stats you can work with? In my case, since start of 2017, only IE 11 has significant usage. Older versions are around 0.3% each, or let’s say 1% total. I simply would not notice if they all just bounce of my home page.

Only problem you might have is if you work with B2B, and big customer shows up with IE8 requirement. Not very likely since it’s no longer supported by Microsoft. And even then you can state although you have no problems with them using IE8 for their mission critical ActiveX app, they can install Chrome or FF for your app.

1 Like

This. Unless you are unusual circumstance it is probably < 5% of users. I haven’t supported IE8 for several years and never had anyone complain. If I notice anyone using IE I tell them to use Chrome.

2 Likes

I agree with @grujicd that the answer will depend on your target audience.

If you’re targeting B2C and especially a tech savvy young crowd, I wouldn’t bother.
If you’re targeting B2B, you may want to have a look at your stats and maybe make plans for being compatible with older browsers. Personally, if you’re just launching I wouldn’t bother at this stage. Use your time where it has the most impact.

What I would recommend you to do no matter your audience:

  • have your homepage / landing page compatible with all browsers (even if you don’t have all features on older browsers, you should still be able to display a minimal version)
  • display a message advising to upgrade on all your pages that are known to have some incompatibility. http://browser-update.org is great for that.
2 Likes

My SaaS serves a few thousand users per day, as it’s used by my clients, and my clients’ clients as well. I’ve been ignoring old browsers (including IE 10) for a couple of years and never had any complaints. And even if anyone complained, I would keep ignoring it as a matter of principle.

This advice I like! So I’ve added into my issue tracker to “do something about older browsers”, but for now I’m ignoring the issue altogether.

Even this is too much!

Good choice. Keep it this way.

Small point, but if you’re just focusing on older versions of Internet Explorer (i.e. 9 or older), you might want to detect them using conditional comments, an Internet Explorer-only HTML extension.

I assume you have some sort of “old browser compatible” marketing page, right?

I think your MARKETING has to be available on even older browsers (in at least some limited way - like a single landing page. And you can also measure how many people land there.

Our signup page supports older browsers, but our app does not. So:

  1. We can measure how many truly interested customers are on older browsers.
  2. We get their login o we can track how many then just use an appropriate browser.

So, I have a funnel in Mixpanel and I can see that only 2.33% of our users Login…unsupported… and then of those 70% eventually login successfully. So we are losing about .33% of users due to browser incompatibility. Not ideal, but almost insignificant. And that problem will get smaller over time.