Which is more widely supported, window.onload or document.onload?
window.onloadA similar question was asked on codingforums a while back and the following quote explains why you should use
|
|||||||||
|
|
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, ►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 -
►Result: Here is the resulting behavior, observable for Chrome v20 (and probably most current browsers).
►Example Project: The code above is taken from this project's codebase ( For a list of event handlers of the window object, please refer to the MDN documentation. |
||||
|
|
|
|
|||
|
|
|
window.onload however they are often the same thing. Similarly body.onload becomes window.onload in IE. |
|||
|
|
|
You also might want to check out jQuery which provides a solid well tested cross browser event model. |
|||
|
|
|
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. |
|||
|
|
jQuery(function() { ... })– Tobias Cohen Mar 15 '10 at 5:42