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

What is the difference between window.onload and document.ready ?

share|improve this question
5  

3 Answers

up vote 204 down vote accepted

The ready event occurs after the HTML document has been loaded, while the onload event occurs later, when all content (e.g. images) also has been loaded.

The onload event is a standard event in the DOM, while the ready event is specific to jQuery. The purpose of the ready event is that it should occur as early as possible after the document has loaded, so that code that adds funcionality to the elements in the page doesn't have to wait for all content to load.

share|improve this answer
25  
Note that the ready event is an extension defined by jQuery, whereas onload is built-in. – Piskvor Sep 13 '10 at 7:43
4  
You're wrong, ready event is not specific to jQuery, it is the same as DOMContentLoaded developer.mozilla.org/en/DOM/DOM_event_reference/… – baptx May 19 '12 at 21:38
18  
@baptx: You're wrong. The ready event is specific to jQuery. It's using the DOMContentLoaded event if it's available in the browser, otherwise it emulates it. There is no exact equivalent in the DOM because the DOMContentLoaded event is not supported in all browsers. – Guffa May 19 '12 at 21:45
3  
Ok but the same result exists with DOMContentLoaded, maybe you should have specified this – baptx May 19 '12 at 21:51
7  
@baptx: I didn't think that it was releveant to the question, and I still don't. – Guffa May 19 '12 at 22:07
show 1 more comment

window.onload is the built-in Javascript event, but as its implementation had subtle quirks across browsers (FF/IE6/IE8/Opera), jQuery provides document.ready, which abstracts those away, and fires as soon as the page's DOM is ready (doesn't wait for images etc.).

document.ready is a jQuery function, wrapping and providing consistency to the following events:

  • document.ondomcontentready / document.ondomcontentloaded - a newish event which fires when the document's DOM is loaded (which may be some time before the images etc. are loaded); again, slightly different in IE and in rest of the world
  • and window.onload (which is implemented even in old browsers), which fires when the entire page loads (images, styles, etc.)
share|improve this answer
2  
There's a slight misconception here: the load event of window is implemented reasonably consistently across browsers. The problem that jQuery and other libraries are trying to solve is the one you mentioned, which is that the load event is not fired until all dependent resources such as images and stylesheets have loaded, which could be a long time after the DOM is completely loaded, rendered and ready for interaction. The event that fires in most browsers when the DOM is ready is called DOMContentLoaded, not DOMContentReady. – Tim Down Sep 13 '10 at 8:31
@Tim Down: reasonably is the key word here; at least some object sniffing used to be necessary, even with onload (there are differences wrt FF/IE/Opera). As for the DOMContentLoaded, you are entirely correct. Editing to clarify. – Piskvor Sep 13 '10 at 8:44
What kind of object sniffing do you mean? – Tim Down Sep 13 '10 at 8:55
@Tim Down: IIRC, Opera's window.onload didn't work correctly (as of 9.04), so you had to sniff for window.opera and hook document.onload; also, there was (is?) a different way of registering for events in IE and in normal browsers (window.onload=function(){} works everywhere, yes, but clobbers whatever was there previously). I may not recall this clearly, as jQuery's document.ready has freed me from this kind of drudgery, many years ago :) – Piskvor Sep 13 '10 at 9:16
OK. Opera has had window.onload for ages (since version 7 maybe? Certainly prior to version 9). Not sure what your point about IE is: are you referring to what happens when both window.onload is assigned and <body> has an onload attribute? That does indeed vary between browsers, but that situation should simply be avoided. Agreed that a library does simplify this kind of thing, but in general, window.onload = function() { ... }; works well in all major browsers so long as there's no onload attribute in the <body> element. – Tim Down Sep 13 '10 at 10:30
show 1 more comment

A word of caution on using $(document).ready() with Internet Explorer. If an HTTP request is interrupted before the entire document is loaded (for example, while a page is streaming to the browser, another link is clicked) IE will trigger the $(document).ready event.

If any code within the $(document).ready() event references DOM objects, the potential exists for those objects to be not found, and Javascript errors can occur. Either guard your references to those objects, or defer code which references those objects to the window.load event.

I have not been able to reproduce this problem in other browsers (specifically, Chrome and Firefox)

share|improve this answer
Which version of IE? I know I should care about compatibility, but it's hard to with IE. Is it acceptable to use document.ready for just JavaScript? – NojoRu Jan 3 at 20:04
1  
IE6, 7, and 8. See: stackoverflow.com/questions/13185689/… – James Drinkard Feb 12 at 15:01
Good to know, thanks! – mkoistinen Feb 24 at 16:08

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.