Dev

Preload A Webpage to Speed Up Your Website

Before you click a link that interests you on a web page, you hover your mouse over that link before clicking on it. Guess how much time spent between these two actions? Believe it or not, it is well over 300 ms. So, why not taking advantage of this timespan and doing something useful to speed up the load speed?

instant.page is a web service that offers just like that, preloading a page right before a use clicks on it.

And it’s dead easy to implement. All you need is to add the following HTML snippet just before </body> tag.

<script src="//instant.page/1.1.0" type="module" integrity="sha384-EwBObn5QAxP8f09iemwAJljc+sU+eUXeL9vSBw1eNmVarwhKk2F9vBEpaN9rsrtp"></script> 

Behind the scene, it uses the prefetch technique like this:

<link rel="prefetch" href="url">

and the source code is only 125 readable lines on Github.

While it sounds very nice, not all browser supports the Prefetch. Chrome has full support. Firefox also supports it but will redownload the page if it’s not cached. But both Sofari and Edge don’t support out of the box, unfortunately.

edge

Share
Published by
edge

Recent Posts

Disable Copilot on Windows 11 via Group Policy GPO

If using Copilot right from the Taskbar isn't your thing, you should disable it. Even…

3 weeks ago

Setting Default Fonts in Word, Excel, Outlook, and PowerPoint via Group Policy

In an environment where standardizing things does matter, setting default fonts in Microsoft Office apps…

1 month ago

Wake-On-LAN (WOL) with Windows and PowerShell

Wake-On-LAN is a networking standard that lets you wake up a computer from either a…

2 months ago

How To Remove Restrictions Set in A Password-Protected PDF File

First of all, this is not to bypass a PDF file that requires a password…

2 months ago

How To Move My Outlook Navigation Bar Back From Left Back To the Bottom

Microsoft has been lurking about the idea of placing the Outlook navigation bar to the…

1 year ago

Headset with Microphone Echoing My Own Voice on Windows, What To Do?

One colleague came up to me the other day asking me to take look at…

1 year ago