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).load(function() { and $(document).ready(function() { that we face when we use them in jQuery?

share|improve this question

4 Answers

up vote 20 down vote accepted

First, a bit of a correction, there is no: $(document).load(function() {, there is a $(document).ready(function() { though, which is very different.

  • document.ready is a jQuery event, it runs when the DOM is ready, e.g. all elements are there to be found/used, but not necessarily all content.
  • window.onload fires later (or at the same time in the worst/failing cases) when images and such are loaded, so if you're using image dimensions for example, you often want to use this instead.
share|improve this answer

The difference are

$(document).ready(function() { is jQuery event that is fired when DOM is loaded, so it’s fired when the document structure is ready.

$(window).load() event is fired after whole content is loaded.

share|improve this answer

From jquery prospective - it's just adding load/onload event to window and document. Check this out:

window.onload vs document.onload

share|improve this answer

According to DOM Level 2 Events, the load event is supposed to fire on document, not on window. However, load is implemented on window in all browsers for backwards compatibility.

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.