What is the difference between $(window).load(function() { and $(document).ready(function() { that we face when we use them in jQuery?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
First, a bit of a correction, there is no:
|
|||
|
|
|
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. |
|||
|
|
|
From jquery prospective - it's just adding |
|||
|
|
|
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. |
|||
|
|

