> All in One 586: prerender.js

Ads

Friday, May 8, 2020

prerender.js

This is another player in the game of rendering the page of the link that you’re about to click on before you click it. It’s like getting a decent performance boost for extremely little effort.

Instant.page is another one, and I’ve been sufficiently convinced by its methodology to the extent that I run it here on this site right now. I don’t really know the difference between the two. And they aren’t the only players either. Google has quicklink and there’s guess-js for really exotic preloading.

It’s a bit of a pity that Safari and Firefox don’t support <link rel="prerender">, as it really seems to me the absolute easiest way to pull this off would be to drop that on the page where, on mouseover of a link, it points to the href of that link.

Direct Link to ArticlePermalink

The post prerender.js appeared first on CSS-Tricks.



from CSS-Tricks https://ift.tt/3fz7t5e
via IFTTT

No comments:

Post a Comment

Enhancing Astro With a Markdown Component

There are two ways to enhance Markdown in an Astro project: Through MDX Through a Markdown Component This article focuses on the Markdo...