vote up 0 vote down star

With which will function(){} fire first?

A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
flag

1 Answer

vote up 5 vote down check

domready will fire first.

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

link|flag
sometimes it fires too soon in IE with 1.11, i have been forced to use load instead. – Dimitar Christoff Nov 5 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 at 4:18

Your Answer

Get an OpenID
or

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