With which will function(){} fire first?
A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
|
feedback
|
|
domready will fire first. | |||||
feedback
|
|
domready comes first as load waits till everything on the page is loaded before executing. | |||
|
feedback
|