DEV Community

Discussion on: Loading Images with Web Workers

Collapse
 
imkevdev profile image
Kevin Farrugia • Edited

Thank you, great read. However, this is incorrect.

Fun fact: tags actually block your application load. If you have 100 images on your page, the browser will download all 100 of them before it renders your page.

<img> tags delay your PageLoad event but do not block rendering.