Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which is more widely supported, window.onload or document.onload?

share|improve this question
25  
jQuery(function() { ... }) – Tobias Cohen Mar 15 '10 at 5:42

6 Answers

up vote 30 down vote accepted

window.onload

A similar question was asked on codingforums a while back and the following quote explains why you should use window.onload over document.onload:

...the current thinking is that a window on load is best because as you say good to seperate structure from action

share|improve this answer
4  
Actually that statement seems to be directed at a choice between window.onload and <body onload=""> which is completely different (and the "separate structure from action" makes a lot more sense in this context). Not that the answer is wrong, but the basis of it is. – Thor84no Sep 17 '12 at 10:39
2  
That quote is grammatically horrible... shouldn't some (marked) editing help? – Kheldar Jan 16 at 15:43

The general idea is that window.onload fires when the document's window is ready for presentation and document.onload fires when the DOM tree (built from the markup code within the document) is completed.

Ideally, subscribing to DOM-tree events, allows offscreen-manipulations through Javascript, incurring almost no CPU load. Contrarily, window.onload can take a while to fire, when multiple external resources have yet to be requested, parsed and loaded.

►Test scenario:

To observe the difference and how your browser of choice implements the aforementioned event handlers, simply insert the following code within your document's - <body>- tag.

<script language="javascript">
window.tdiff = []; fred = function(a,b){return a-b;};
window.document.onload = function(e){ 
    console.log("document.onload", e, Date.now() ,window.tdiff,  
    (window.tdiff[0] = Date.now()) && window.tdiff.reduce(fred) ); 
}
window.onload = function(e){ 
    console.log("window.onload", e, Date.now() ,window.tdiff, 
    (window.tdiff[1] = Date.now()) && window.tdiff.reduce(fred) ); 
}
</script>

►Result:

Here is the resulting behavior, observable for Chrome v20 (and probably most current browsers).

  • No document.onload event.
  • onload fires twice when declared inside the <body>, once when declared inside the <head> (where the event then acts as document.onload ).
  • counting and acting dependent on the state of the counter allows to emulate both event behaviors.
  • Alternatively declare the window.onload event handler within the confines of the HTML-<head> element.

►Example Project:

The code above is taken from this project's codebase (index.html and keyboarder.js).


For a list of event handlers of the window object, please refer to the MDN documentation.

share|improve this answer

window.onload however they are often the same thing. Similarly body.onload becomes window.onload in IE.

share|improve this answer

You also might want to check out jQuery which provides a solid well tested cross browser event model.

share|improve this answer

Window.onload is the standard, however - the web browser in the PS3 (based on Netfront) doesn't support the window object, so you can't use it there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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