Do u know the difference between jquery $(document).ready and $(window).load ???

2 replies
I thought, that there is no difference between these two. That both work and do stuff,
when the page has loaded. WRONG!!!
$(document).ready work when the DOM is ready.
That means that can be executed even when the pictures have NOT been loaded, cause the DOM is ready (the structure of the page and its elements)
But, when you need to do something, when EVERYTHING has loaded,
comes the $(window).load.
I found it out, when i needed to pass a javascript variable at the start of the page, and do something with that. I made it with $(document).ready and $(window).load

I found also this relative article. Check it out!
https://4loc.wordpress.com/2009/04/2...vs-windowload/
#$documentready #$windowload #difference #jquery
  • Profile picture of the author Yadav Poonam
    Nice article. Thanks for sharing in this thread.
    {{ DiscussionBoard.errors[10445082].message }}
  • Profile picture of the author omerbsh
    Nice Thanks
    {{ DiscussionBoard.errors[10446819].message }}

Trending Topics