TIL About Native Lazy Loading
POSTED ON:
TAGS: vanilla html optimization
Native Lazy Loading.
<img src="myimage.jpg" loading="lazy" alt="..." />
<iframe src="content.html" loading="lazy"></iframe>
Note: Not every browser supports it. But it's a lightweight and frictionless way to set up lazyloading.
Related TILs
Tagged: vanilla