Reputation: 1014
As asked in the title, what's the first event fired when a web page is loaded to the browser? I believe there are events before window.onload
. What are they, and which one is the first fired?
Upvotes: 8
Views: 5169
Reputation: 1913
This looks to have some of what you're looking for:
[Updated link - link-rot - this is why you copy and paste essential information directly into an answer]
Upvotes: 0
Reputation: 15291
Don't know if this helps but firebug/IE Dev Tool is really good for watching JS events execute as the page loads. I use that to caputre events and see the order of how they're happening.
Upvotes: 0
Reputation: 186562
If you're looking to invoke an event handler before onload
, DOMContentLoaded
is one event that usually fires before.
document.addEventListener('DOMContentLoaded', functionRef, false);
Upvotes: 5