With which will function(){} fire first?

A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
link|improve this question
feedback

2 Answers

up vote 8 down vote accepted

domready will fire first.

http://demos111.mootools.net/DomReadyVS.Load

link|improve this answer
sometimes it fires too soon in IE with 1.11, i have been forced to use load instead. – Dimitar Christoff Nov 5 '09 at 12:04
@JamesBrownIsDead -- the concept of the domready event is that the structure of the html and the resulting DOM (document object model) will have loaded. So, the "skeleton" of the page has loaded. While load is the event that fires once all that is done AS WELL AS all the images and whatever other ancillary content files. – artlung Nov 9 '09 at 4:18
feedback

domready comes first as load waits till everything on the page is loaded before executing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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