So you've decided to drop support for IE11 and move onto evergreen browsers only (IE11 is only about ~2% globally). That's great! 🌲
With that in mind, here's a giant list of the features you should use, today (today being mid-2019), safely, without polyfills or feature detection. 📃
Before we start, of course, there'll always be old browsers. And, to be fair, browsers in emerging markets are more complex: like UC, KaiOS (based on an older Firefox), and Opera Mini. In these cases, I suggest serving no JS whatsoever (if possible), or encouraging users to upgrade. 🤷
Let's go! ⬇️
The DOM
Choose image URL based on resolution 📽️ (via
<img srcset>
and<picture>
)Frames can load from a
Blob
Disable form elements with
<fieldset disabled>
, useful for in-progress formsHTML input types
color
and various date/time optionsHTML templates and the
<template>
element (this is also in JS, but you can specify them in your pages)The
<meter>
element (goes along with<progress>
)
JavaScript Language
ES Modules, through
<script type="module">
andimport
/export
🎉Template literals (with backticks)
Classes like
class Foo { constructor() { ... } }
Functions! Arrow functions, rest parameters,
async
functions that allowawait
, generators which canyield
JavaScript Library
-
Promise
andfetch
(no need forXMLHttpRequest
anymore 🚫)- ... XHR's
responseType
can also now be set safely to "json", but why would you bother? 🤷
- ... XHR's
Methods on
Array
:find
,includes
; and onString
:includes
,padStart
andpadEnd
The
Proxy
object, allowing for interesting approachesMethods on
Object
:entries
andvalues
, for iteration (likeObject.keys
)The
URL
object (useful to check for query params and work with URLs)The
currentScript
property ("what file am I")You can safely dispatch a
new CustomEvent('....')
rather than dealing with weird intializersSymbol
and friends
JavaScript + The DOM
The third argument to
addEventListener
, allowing you to set{once: true}
and other optionsIntersectionObserver
, allowing you to tell whether DOM nodes are visibleThe
navigator.sendBeacon
method, to send POST messages even if a page closesFind the closest matching element with
closest
The 2nd argument to
classList.toggle
, allowing you to set or remove a class via parameter (also, the.relList
property on links)Canvas blend modes (this is the
.globalCompositeOperation
property)Determine whether a CSS feature is supported via
CSS.supports
(but this only helps future features)
Whole New APIs
Web Assembly 👩💻
Gamepad API 🎮
Web Audio API 📣
Pointer Lock API: useful for HTML games and rich experiences 🐁🔒
Constraint Validation API (improved form validation) 📏
WebRTC 📽️
getUserMedia
to get access to video, audio streams 🙏
CSS
Grid 🎉
CSS Variables, such as
--foo: blue;
, used withcolor: var(--foo)
Sticky Position
CSS filters, allowing for visual effects like invert, drop shadow and hue changes
Image
object-fit
(Edge only supports it on<img>
), allowing you to make an image contain or cover its contents rather than stretchImproved media queries for pointer or mouse access Fun fact: this was one of the first demos I wrote working on Chrome.
New CSS cursors 'grab', 'zoom-in', 'zoom-out'
The
::placeholder
pseudo-element, for styling the placeholder text inside an<input>
Using
initial
orunset
as CSS valuesThe
vmax
unit, which is a percent of whichever's larger: width or heightGoing along with the JS method, the CSS
@supports
at-ruleRead-only and read-write pseudo-class selectors (
:read-write
seems the more useful of the two)-
- ... although supported on all evergreens, you'll need to include the
-webkit-
prefixes: yes, even for Edge and Firefox
- ... although supported on all evergreens, you'll need to include the
-
Risky bugs in IE11 are no longer an issue:
- You can now safely put
calc(...)
inside a CSS animation - CSS
display: flex
had a variety of issues
- You can now safely put
Phew!
You got this far! Congratulations! 🎉
If there's any I've missed, or good resources for any of these features, let me know below.
17 👋
Top comments (11)
Developers should stop supporting these unmaintained browsers and force users into a better, faster, and more modern experience. Too much time and energy is spent on supporting browsers that people are using simply because they don't know any better.
If seeing the message "Your browser is not supported" was a common occurrence people would stop using IE 11. Instead we punish everyone sending out bloated transpiled and polyfilled code just to placate the tiny minority using browsers half a decade old.
I agree, but I also can't stress this enough: if your site is mostly content, then just ship content. For me and my projects at Google, this happens by only shipping
<script type="module">
code. Everyone else gets the basic HTML version.I'm doing something similar with Vue. The modern mode flag makes it easy. It creates two builds. Using the module and nomodule fags IE users get transpiled code and everyone else gets just minified code.
I've found that its not foolproof though. It can generate some wierd errors when it converts a generator into a jumbled mess of semi-equivalent functions. Luckily I don't have to worry about it. I got the go-ahead to drop IE. Giving them the transpiled code is literally all we are doing for them. If it breaks, its not an issue.
IE users see a big warning on a login screen telling them in no uncertain terms that their browser will not work. Its kind of disheartening how many lines I still see in the server logs with "Trident". I don't know why these people are so stubborn and insist on using a slow browser on a website that tells them that they will experience errors on that site.
Using XHR instead of the fetch API is not out of the question. Fetch isn't a 1:1 replacement, and as Chris Ferdinandi points out, requires two functions just to get the data in readable form. (In the first
then()
the data is in a stream.) Another great post by Glenn Stovall demonstrates how to write a small ajax function using XHR without any third party libraries.You're not wrong, and the extra step is a bit misunderstood, although important if you want to stream large binary files (I used it in this PWA demo to show a %—blink and you'll miss it).
I have a few unrelated thoughts:
await
makes the flow much nicer than Chris' examplesonload
, instead using the more confusingonreadystatechange
(and this is actually a vote for XHRs).responseType = 'json'
in IE11 actually makes XHRs more confusing, since you just can't safely use that parameter and you have to add aJSON.parse
call tooVery nice list.
Don't forget Custom Elements and Shadow DOM, which I think merit a place on this list since with Edgium, they're supported on all the Evergreens.
I'm avoiding Edgium. I think dropping IE11 gives you a big enough list that it's interesting right now.
This echoes lots of developer stories, sadly. On the flipside, I think primitives like Grid are so good now that many devs are just honestly forgetting about IE11.
And at least for CSS, IE11 will still serve, even if none of the elements are in the right place. And if your JS is done right for content sites, IE11 will still be readable!
Wow, truly a great write-up. I just decided to drop IE11 support (only something like 0.3% of traffic on my blog); and, it's awesome to see all the stuff that I can start using with abandon. Also gave me some topics to dig into - I'm familiar with most of what you wrote, but definitely some features here (like beacon) that I had never heard of before. Thanks!
Loving this!
srcset nice!