Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between the DOMContentLoaded and the Load event?

share|improve this question

2 Answers

up vote 14 down vote accepted

From the Mozilla Developer Center:

Fired on a Window object when a document's DOM content is finished loading, but unlike "load", does not wait until all images are loaded.

share|improve this answer

The DOMContentLoaded event will fire as soon as the DOM hierarchy has been fully constructed, the load event will do it when all the images and sub-frames have finished loading.

This event will work on most modern browsers, but not on IE, there are some workarounds to mimic this event on IE, like the used on the jQuery library, they attach the IE specific onreadystatechange event.

share|improve this answer
Which event are you referring to when you say "This event"? – Tom Hubbard Apr 8 at 10:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.