Enjoy 20% off all plans by following us on social media. Check out other promotions!
Quiz Questions

Difference between document `load` event and document `DOMContentLoaded` event?

Topics
JAVASCRIPT
Edit on GitHub

The DOMContentLoaded event is fired when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading.

window's load event is only fired after the DOM and all dependent resources and assets have loaded.

Edit on GitHub