Lazy-load offscreen iframes for better Pagespeed
Browser-level lazy-loading for iframes is here. Use loading="lazy" and defers offscreen iframes from being loaded until the user scrolls near them.
<iframe
src="https://example.com/"
loading="lazy"
/>
You can see how lazy loading iframes wor...
yukiprod.hashnode.dev1 min read