JQuery is waiting for images to load before executing document.ready - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:00:54Zhttp://stackoverflow.com/feeds/question/477463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready33JQuery is waiting for images to load before executing document.readySimon2009-01-25T10:11:26Z2009-07-20T21:53:12Z
<p><b>Update:</b>
This bug has been confirmed by at least two others. Even if you dont read my full post - if you're reading this and using JQuery 1.3.1 then <strong>stop using it</strong> if you're relying on any handlers that you want to execute when the DOM is complete but before the page's images have loaded.</p>
<p><strong>Update2</strong>: Thanks to <a href="http://stackoverflow.com/users/20/tom">Tom</a> (user id 20!) for posting the <a href="http://dev.jquery.com/ticket/3988#preview" rel="nofollow">link to the ticket</a> on the jQuery bug tracker. </p>
<p><strong>Update3 - 2009/01/28:</strong> The issue has been properly resolved (for those for whom reverting to 1.2.6 is not an option). For anyone currently using 1.3.1 and needing an immediate fix you can read the accepted answer below for direction. Thanks John.</p>
<p><hr></p>
<p>I just upgraded to JQuery 1.3.1, and it took me several hours to realize that my beloved </p>
<pre><code>$(function( ) { ... }
</code></pre>
<p>syntax was now waiting for the entire page to load (including images) before executing the function body. I was seeing <a href="http://stackoverflow.com/questions/477348/">strange behavior</a> when trying to integrate Yahoo's menus. (Fortunately I had some slow loading images on my page which made me aware of the problem)!</p>
<p>I made a test file becasue I figured something more complex was going on, but I still had the same symptoms even with this simple file.</p>
<pre><code><head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
<script>
$(function() {
alert("Ready");
});
</script>
</head>
<body>
<img src="<PATH_TO_DYNAMIC_IMAGE>_1.jpg" />
<img src="<PATH_TO_DYNAMIC_IMAGE>_2.jpg" />
<img src="<PATH_TO_DYNAMIC_IMAGE>_3.jpg" />
<img src="<PATH_TO_DYNAMIC_IMAGE>_4.jpg" />
</body>
</code></pre>
<p>Different versions of JQuery had different results:</p>
<ul>
<li>What happens in version 1.2.6 is that alert box is shown instantly and then I see the images loading behind it (expected and documented behavior).</li>
<li>What happens in version 1.3.1 is that the images all load and only then will the alert box be shown.</li>
</ul>
<p>Whats going on! Is this a new feature (I cant imagine why) or a bug?</p>
<p><strong>Important: This only seems to be an issue in IE and not firefox</strong></p>
<p><em>Sorry I dont have a dynamic image file that is publically accessible to make it easier for others to see this. If you want to test it out I suggest using a large image file picked randomly from google images and clear your cache.</em></p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/477593#4775932Answer by Pim Jager for JQuery is waiting for images to load before executing document.readyPim Jager2009-01-25T11:38:06Z2009-01-25T11:38:06Z<p>You should file this as a bug on the jQuery site, they are still bug-testing 1.3</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/477626#4776264Answer by Crescent Fresh for JQuery is waiting for images to load before executing document.readyCrescent Fresh2009-01-25T12:17:04Z2009-01-25T12:17:04Z<p>There are some things that just can't be unit tested. Just confirmed in IE6+7 and 1.3.1. Holy hell, what a huge regression.</p>
<p>So, do you have time to report this? Just checked and it's not a known bug for 1.3.1.</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/480721#4807210Answer by Webdawson for JQuery is waiting for images to load before executing document.readyWebdawson2009-01-26T17:57:49Z2009-01-26T17:57:49Z<p>You're right - same problem here in ie6 & IE7 Firefox & Opera seems to be ok!</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/482183#4821834Answer by Tom for JQuery is waiting for images to load before executing document.readyTom2009-01-27T02:42:53Z2009-01-27T02:42:53Z<p><a href="http://dev.jquery.com/ticket/3988#preview" rel="nofollow">Here's an update of the ticket I submitted</a>. It seems as if <a href="http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready#480721">@Webdawson</a> has attached a sample page to the ticket.</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/482853#4828533Answer by Webdawson for JQuery is waiting for images to load before executing document.readyWebdawson2009-01-27T10:10:41Z2009-01-27T10:10:41Z<p>hi tom, yes i've added an example, its clearly a bug in IE6 & 7 (i havn't tested it in other IE versions). It seems as if the 1.3.1 Version has a lot of bugs. :( </p>
<p>Here is the example link: <a href="http://www.kollermedia.at/jquery_bug.html" rel="nofollow">http://www.kollermedia.at/jquery_bug.html</a></p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/488009#4880090Answer by Donny V. for JQuery is waiting for images to load before executing document.readyDonny V.2009-01-28T15:22:26Z2009-01-28T15:22:26Z<p>Chrome is alright.</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/489772#48977237Answer by John Resig for JQuery is waiting for images to load before executing document.readyJohn Resig2009-01-28T22:47:38Z2009-01-28T22:57:59Z<p>This was due to jQuery bugs #<a href="http://dev.jquery.com/ticket/2614" rel="nofollow">2614</a> and #<a href="http://dev.jquery.com/ticket/3880" rel="nofollow">3880</a> - there were definite problems with the ready code in IE in 1.2.6 and in 1.3 - and now a different set of problems in 1.3.1.</p>
<p>A larger discussion can be found here:<br>
<a href="http://groups.google.com/group/jquery-dev/browse_thread/thread/3abf45d3fd4d50fc" rel="nofollow">http://groups.google.com/group/jquery-dev/browse_thread/thread/3abf45d3fd4d50fc</a></p>
<p>And the ticket related to the issue can be found here (if you find additional issues with the fix, please re-open the ticket and post to the above jquery-dev thread):<br>
<a href="http://dev.jquery.com/ticket/3988" rel="nofollow">http://dev.jquery.com/ticket/3988</a></p>
<p>I just landed a fix for this in SVN rev <a href="http://dev.jquery.com/changeset/6170" rel="nofollow">6170</a>.</p>
<p>I just pushed up a new nightly that you can use until 1.3.2 final comes out: <br><a href="http://code.jquery.com/nightlies/jquery-2009-01-28.js" rel="nofollow">http://code.jquery.com/nightlies/jquery-2009-01-28.js</a></p>
<p>Sorry in the delay for getting a fix out - was traveling this week.</p>
http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/1156171#11561710Answer by emre for JQuery is waiting for images to load before executing document.readyemre2009-07-20T21:53:12Z2009-07-20T21:53:12Z<p>I am using 1.3.1 and I have totally a different result. It DOES NOT wait until the images are loaded. I am using load() ank calling aspx pages that have images to be loaded. It seemd ready() fires before the images loaded so the cycle plugin I call inside it is too early. any suggestions why it happens?</p>