Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8151621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:26:41+00:00 2026-06-06T15:26:41+00:00

I have a page that loads content through AJAX. Among this content are some

  • 0

I have a page that loads content through AJAX. Among this content are some images. I need to do some formatting to the page layout depending on the images sizes (which vary) but in order to get the sizes, I need the images to finish loading first before running the code. If it was in an ordinary page (content loading normally WITHOUT AJAX), all I have to do is use the $(window).load() function but with AJAX it doesn’t trigger for some reasons. I need a workaround to this : a way to execute some code after the images loaded through AJAX finish loading.

Basically, this is what I’m trying to do

ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
document.getElementById("results").innerHTML=ajaxRequest.responseText;
//the responseText includes images among other information to be loaded 
$(window).load(function() {
...some code
});}}

but the $(window).load() never fires and I need to run the code once ALL images have finished loading so binding a load event to every image isn’t really an option.

I have another question that is related and similar to the first one : the jQuery $(document).ready doesn’t seem to fire either after content is loaded through AJAX. I don’t need it right now but I will certainly do in the future, so any workarounds for this too ?

I would really appreciate your help and thanks a lot.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T15:26:43+00:00Added an answer on June 6, 2026 at 3:26 pm

    $(window).load works only for the page initial loading.

    The only clean solution I see is counting the images (hoping they’re the only problem) and waiting for them to load :

    $('#results').load('youurl', function() {
        var $images = $('#contenu img');
        var count = $images.length;
        console.log('initial images count : ', count);
        var decrement = function() {
            if (--count==0) {
                console.log('All images loaded');
                // do something                 
            }
        };
        $images.each(function(){
           if (this.complete) {
               decrement();
           } else {
               this.onload = function(){
                    decrement();
               };
           }
        });
    });
    

    This is now testable on this site : click a link for a recipe and look at the console.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a single page application which loads all content through ajax calls to
The Idea I have a main PHP page that loads content in DIV's from
I have a web application that has a page that loads the content from
i have an application that loads the page content. I use the WebClient class.
I have a page that loads other pages via Ajax (think frames, except without
I have a page in my application that refreshes some content (a list of
I have an admin that is almost completely ajax driven. When the page loads
I have a page that loads a bunch of scripts to prepopulate dropdowns and
I have a page that loads an external HTML page into an iFrame. There
I have a .aspx page that loads three separate .ascx controls to represent adding,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.