According to the MDN wiki, DOMContentLoaded will fire when “page’s DOM is ready, [although] the referenced stylesheets, images, and subframes may not be done loading.”
What about DOMContentReady? Is it just an alias?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m making the claim that the event type “DOMContentReady” does not exist in current implementations (meaning, that no current implementation fires such an event type), and that appearances of such a name are merely lapsus memoriae.
The name “DOMContentLoaded” is not easily remembered, and since the jQuery library uses the method
.ready()to bind this event type, I guess, some people just mistakenly used the name “DOMContentReady” to refer to the correct name “DOMContentLoaded”.