Educating internet explorer users

2022-04-15
3 minutes

Internet Explorer was, in its prime, the most popular internet browser in the world. Originally released alongside Windows 95, its headline feature seemed to be that it was maintained by Microsoft and was automatically installed. It wasn’t until Internet Explorer 2.0 in November 1995 that feature we’re used to, like SSL and cookies. But it’s not 1995 any more.

In 2022 (which apparently it is now), Internet Explorer is rarely ever used, reserved mostly for those still clinging to the tools and technologies they’re familiar with. However, because Internet Explorer is so old, it doesn’t support many of the shiny new features we’ve come to expect from websites (don’t even get me started on Web 3.0). With people sticking to what they know, but developers wanting to use the new shiny, we need to start strongly encouraging users to migrate to something better, or at least newer.

From today, anyone trying to view my website in Internet Explorer will be met with an educational message.

#Why

<tldr>

Because, I quite enjoy trolling people.

</tldr>

But seriously, Internet Explorer is no longer maintained. It’s not received feature updates for a while, and even when it was maintained, it was living in its own world doing its own thing, requiring a number of polyfills and special cases to make sites look like every other browser. Back in May Internet Explorer began its retirement process, being replaced by “IE Mode” in Edge.

IE11 retirement plan. source: Microsoft

On June 15th 2022 (exactly 2 months from today), Internet Explorer will be officially retired. Although tools and services have been dropping support for ages. Heck, even Office 365 dropped support for Internet Explorer back in August. You can even tell Microsoft to forcefully redirect your site to opening in Edge instead, which is something Stack Overflow do.

And then of course, there’s what to switch to. More modern browsers bring with them security fixes, performance improvements, and new shiny features both you and developers will appreciate. Personally, I’ve been a Firefox user for as long as I can remember, and have 0 intention of going anywhere.

#How

We’ve talked about the why, but how can we inform people of the new ways? How can we inform them that their browser is inferior to what’s already out there. Well, by telling them.

When someone in IE11 visits this site, they are automatically redirected to the aptly named stopinternetexplorer.com, which educates them on why Internet Explorer is outdated, and suggests alternatives they may be interested in.

But how does it work?

#Detecting IE11

Step 1 is detecting Internet Explorer. Because it’s so old, not everything in Javascript is supported, which is why there is often the need to polyfill even the most basic of APIs. I’m not normally one for using libraries for something so simple, but rather than copy someone’s code, I decided to depend on a tiny library simply called is-ie-11.

is-ie-11 uses Javascript APIs which were only ever implemented and used by Internet Explorer to fingerprint it and determine whether it’s running there in as safe of a way as possible (browser standards are a mess, right!).

#Shaming

Now, we do the redirect itself. I didn’t trust Internet Explorer at all, so I had to check, but fortunately window.location.assign is supported.

Marrying it all together, we end up with a very tiny script:

ie11-deterrent.js
const { isIE11 } = require('@ledge/is-ie-11');

if (isIE11()) {
  // Stop using internet explorer!
  window.location.assign('https://stopinternetexplorer.com/');
}

Added right at the top of the <head> tag, this should do the trick nicely!

#Performance

I take the performance of my website very seriously. Professionally I focus on performance, from both the server and client sides of development. My website is currently a static site created with Hugo using a very custom theme. Because it’s static, it’s incredibly fast to load, and is compressed as much as it can be.

The additional weight on the page is as small as possible. The script itself is tiny (288 bytes), sent compressed (214 bytes over the wire), and executed async to prevent any impact. Additionally, the file will only be downloaded once, so subsequent visits won’t need to download it. And, because the script is so small and simple, it barely takes any time to run anyway.

#Impact

I’m never going to notice this in action, and take advantage of the message it’s preaching, but I’m sure someone out there will. I use Plausible for my analytics, which currently reports almost no one uses Internet Explorer to visit my website, which given its target audience is not entirely surprising.

It’s just another tiny fun Easter egg to go alongside the others, like that “To top, in style” button way down there in the footer. Go on, give it a click…

Share this page

Similar content

View all →

None

Turning my website into a browser search engine

2024-02-22
6 minutes

My website has search functionality. You can visit the search page (or the homepage or the magnifying glass in the top right), enter a search query, and if I've written something about it (which is quite likely), the matching pages will come up for your reading pleasure. Under the hood,…

Look Up

Exposing Docker's internal DNS with CoreDNS

2024-01-17
6 minutes

Whilst Docker is a containerisation technology, it's not just about running applications - there's also networking. When you add a container to a docker network, it magically becomes discoverable by other containers on the same network with DNS. All containers use Docker's magical internal DNS server to achieve this. However,…

Wandering near lake Zurich on an overcast day

Building search into a Hugo website

2021-09-12
4 minutes

My website is built with Hugo, a great static site generator with a bunch of features. One of the big missing features though is search. Hugo has documentation on a bunch of different integrations, but none of them quite did what I wanted. Over the last few months, I’ve been…