Table of Contents

We use every trick in the book to speed up our websites. Optimizing images. CDNs. GZIP. Caching. But as sites become more complex and burdened by page weight, reactively responding to user interactions is not enough. We need to be proactive—we need to predict what users want, and even get that content ready for them before they ask for it.

With resource hints and directives, you can do just that—tell browsers to fetch and download resources for your pages ahead of time for better actual and perceived website performance. This technique is known as prebrowsing.

In this post, we’ll explore three key resource hints: preload, prefetch, and preconnect, along with how they work, their benefits, and how to use them.

What is Prebrowsing?

Steve Souders coined the term prebrowsing (from predictive browsing) in 2013.

Prebrowsing is all about anticipating user actions and preparing content on your site that they might want before they actually need it. It’s a concept that’s a step toward a faster internet, as A List Apart’s Santiago Valdarrama writes in his article, One Step Ahead: Improving Performance with Prebrowsing:

“Browsers are already working behind the scenes, looking for patterns in our sites to make navigation as fast as possible. Prebrowsing builds on that: we can combine the insight we have on our own pages with further analysis of user patterns. By helping browsers do a better job, we speed up and improve the experience for our users.”

You might be wondering, “isn’t this what caching is for?” Well, yes. Browser caching is essential for the fast loading of pages. But there are times when caching needs a little help:

  • First-time website visits: The first time a user visits a site, their browser hasn’t cached any static resources yet.
  • Cleared browser data: Users who clear their browser cache will no longer have a copy of your resources the next time they visit your site.
  • Expired browser data: According to HTTP Archive, 69% of resources don’t have any caching headers or are cacheable for less than one day. If the user revisits these pages and the browser determines the resource is expired, an HTTP request is needed to check for updates. Even if the response indicates the cached resource is still valid, these network delays still make pages load more slowly, especially on mobile.
  • Old browser data: Even if a user has cached content from a previous visit, the website might have changed or been updated with new resources.

Fortunately, browsing techniques can help you get around these issues.

1. Preload

Have you ever wanted to tell the browser about an important font or script without delaying the page’s onload event?

With preload, you can do just that. This directive tells the browser that a resource is needed as part of the current navigation, and that it should start being fetched as soon as possible.

As Yoav Weiss, a principal architect at Akamai who worked on this web standard, explains:

“[Preload provides] more granular loading control to web developers. It gives developers the ability to define custom loading logic without suffering the performance penalty that script-based resource loaders incur.”

When you specify a resource is needed via preload, it is downloaded as a priority and stored in the browser, waiting until it’s referenced in the DOM, JavaScript or CSS.

The as attribute tells the browser what type of resource it will be downloading so it can be handled correctly. Without it, the browser won’t use the preloaded resource. Possible values include:

  • “font”
  • “script”
  • “style”
  • “image”
  • “media”
  • “document”

<link rel=”preload”> supersedes <link rel=”subresource”>, which, according to Google, had significant bugs and drawbacks. It was never implemented in browsers other than Chrome. As such, Chrome 50 removed support for it in March 2016.

It’s also important to know preload is a compulsory instruction to the browser. Unlike the other resource hints we’ll look at in this post, preload is something the browser must do, rather than optionally.

Weiss published a definitive guide to preload prior to its release in Chrome. If you’re interested in learning how to use this resource hint effectively, I highly recommend reading his guide.

Don’t forget that preloading is also useful to optimize the Largest Contentful Paint score.

2. Prefetch

Think you can predict what the user will click or interact with next?

The prefetch resource hint is somewhat different from preload. It doesn’t try to make something critical happen faster; rather, it tries to make something non-critical happen earlier—if there’s a chance.

With prefetch, you can tell the browser to fetch resources you think the user might need later as part of a future navigation or interaction if the user takes the action you’re expecting. These resources will then be fetched at the lowest priority in the browser when the current page is done loading and there’s bandwidth available.

This means that prefetch is best used to anticipate the user’s next action and prepare for it, such as retrieving necessary scripts or images.

There are 3 types of prefetching, and what I’ve described above is typically known as link prefetching.

According to Mozilla’s MDN web docs for link prefetching:

“… After the browser is finished loading the page, it begins silently prefetching specified documents and stores them in its cache. When the user visits one of the prefetched documents, it can be served up quickly out of the browser’s cache.”

For this type of prefetching, the browser looks for prefetch either in an HTML <link> or an HTTP Link: header. Here’s an example using the link tag:

<link rel="prefetch" href="page-2.html">

And here’s the same link prefetching hint using an HTTP Link: header:

Link: </page-2.html>; rel=prefetch

The other types of prefetching are DNS prefetching and prerendering.

DNS Prefetching

DNS prefetching lets you tell the browser to perform DNS lookups on a page in the background while the user is browsing. So by the time the user clicks a link as anticipated, the DNS look has already taken place, thus reducing latency.

DNS prefetching can be added to a specific URL by adding the rel=”dns-prefetch” tag to the link attribute. For example:

<link rel="dns-prefetch" href="//fonts.googleapis.com">

Mozilla’s MDN web docs DNS prefetch entry explains that:

“DNS requests are very small in terms of bandwidth, but latency can be quite high, especially on mobile networks. By speculatively prefetching DNS results, latency can be reduced significantly at certain times, such as when the user clicks the link. In some cases, latency can be reduced by a second.”

Prerendering

Prerendering steps things up a notch, letting you tell the browser to download entire pages.

Let’s say, for example, you absolutely know for sure (because you checked your analytics and it’s a common usage pattern) that users will land on your homepage and then proceed to visit services.html because this is the most popular navigation. You can give the browser a resource hint:

<link rel="prerender" href="http://example.com/services.html">

After downloading the homepage, the browser will then download services.html in the background and have it ready for the user as soon as they ask for it. When they finally click the “Services” link, the prerendered page will load instantaneously.

But what if the user doesn’t click to visit your “Services” page and instead navigates to the “About” page? Needless to say, prerendering is a risky technique because you’re gambling on a user’s next move.

If you’re right, you’ll save the time of downloading a whole other page. But if you’re wrong, it can cause major bandwidth waste, which is especially detrimental to mobile users.

[optin-monster slug=”nyrydv5iync8zrrulm5i”]

What is Preconnect?

Third-party resources can really slow a page down thanks in no small part to the number of round-trips needed before the browser can actually start downloading the resource. These round-trips include DNS lookup, TCP handshake, and TLS negotiation for HTTPS.

Depending on the page and the network conditions, these round-trips can add hundreds of milliseconds of latency or more, which can add up quickly if you’re requesting resources from several different hosts. For example, your page might connect to Twitter and Facebook for social sharing, Gravatar for comments, and Google Analytics.

But what if you could eliminate some of these round-trips and speed up perceived performance and actual loading time?

Preconnect lets you tell the browser that your page intends to establish a connection to an external resource, and that you’d like the process to start ASAP. Here’s an example of how you would use this resource hint:

<link rel=”preconnect” href=”https://example.com”>

Say you wanted to speed up the display of Google Fonts webfonts on your page. The service is reliable and generally fast due to Google’s global CDN. But since @font-face rules must first be discovered in CSS files before the browser makes webfont requests, there can be a noticeable flash of unstyled content (FOUC) during page render.

With preconnect, you can greatly reduce this delay by adding the following preconnect hint:

<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

As Viget senior front-end developer Jeremy Frank writes in his guide to preconnect hints, adding preconnect removed 3 round-trips from the critical rendering path in his testing and cut more than half a second of latency:

What’s great about this particular example is that using preconnect helps to reduce rendering blocking and improves time to paint (including LCP once again).

According to Google web performance engineer Ilya Grigorik:

“Preconnect is an important tool in your optimization toolbox… it can eliminate many costly round-trips from your request path—in some cases reducing the request latency by hundreds and even thousands of milliseconds.”

Conclusion

Prebrowsing techniques have been around for some years now and are more prevalent across the web than you may realize—Google uses resource hints to make search almost instantaneous for its users.

Furthermore, with WP Rocket you can benefit from preloading and DNS prefetching without lifting a finger! And don’t forget that improving web performance also means improving your Core Web Vitals scores!

Ready to get started with prebrowsing on your site?
Think about what you know about your pages and your users; start noting down user patterns, dig into your Google Analytics to find out how users navigate your site and what resources they use. Armed with this information, you can speed up and improve the user experience.


Comments (8)

Great article thanks for writing this post. Will use these things on my blog. Hope it will improve blog performance..

We have the unlimited license for WP-ROCKET plugin, thanks for a great product!

How much of this preloading, prefetching is already implemented in the WP plugin? Is there any control on what resource can we preload or prefetch?

Thanks!

That's exactly the kind of article I'm looking to get from you guys! Raelene, you did a wonderful job of explaining this topic and making it clear to all. Thanks a lot for that and looking forward to reading more :-)

Thanks for the kind words, Jérôme! It's certainly a topic worth learning more about :)

Thank you¡¡¡ definitely a great plugin to enhance the speed of our sites.

Good article but I cant see how this affects WP Rocket? Is it in WP Rocket? Google is marking my site down quite a bit but I have W Rocket enabled will all bells and whistles ticked :)

Would also like to see all these integrated into WP Rocket, I think only preload and prefetch are now?

All your articles are top notch, great work Raelene.

This is great. According to WebPageTest, Gravatar is a huge performance hit for my site. I'm now wondering if I can use `preconnect` to reduce the DNS look-up times for the `302` redirect to `i2.wp.com`.

Related Articles of Page speed and caching
Subscribe to Our Newsletter

Stay in the loop with the latest WordPress and web performance updates.
Straight to your inbox every two weeks.

Get a Faster Website
in a Few Clicks

Setup Takes 3 Minutes Flat
Get WP Rocket Now