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 3323386
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:17:47+00:00 2026-05-17T23:17:47+00:00

Is it somehow possible to load more files via AJAX? Example $.ajax({ url: [test1.html,

  • 0

Is it somehow possible to load more files via AJAX?

Example

$.ajax({
  url: ["test1.html", "test2.html", "test3.html"],
  success: function(data1, data2, data3) {
    // Do something  
  }
});

Because I would like to avoid callbacks…

  $.ajax({
  url: "test1.html",
  success: function(data) {

    $.ajax({
      url: "test2.html",
      success: function(data) {

        $.ajax({
          url: "test3.html",
          success: function(data) {

            // Do something

          }
        });

      }
    });

  }
});
  • 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-05-17T23:17:48+00:00Added an answer on May 17, 2026 at 11:17 pm

    I prefer to write recursive functions and use a stack for something like this. This will only run success or error once at the end of the processing and will fetch each url sequentially. However, fetching them sequentially may make the loading take longer because it does not allow the browser to parallelize the requests! A different variation from this just be to run all the requests parallel and just process the results sequentially.

    function fetch (urls, success, error) {
      if (urls.length) {
        $.ajax({
          url: urls[0],
          success: function () {
            fetch(urls.slice(1), success, error)
          },
          error: error
        })
      } else {
        success()
      }
    }
    
    fetch(["url1.html", "url2.html", ...], function () {
      // success
    }, function () {
      // failure
    })
    

    As I just typed this up, there may be some small errors, but the concept is sound. There is more that can be done such as passing values/results out, but those are left as an exercise 😉 With the same warning applying, here is a version which just processes the results sequentially — the requests may be sent in parallel:

    function fetch (urls, success, error) {
      var fetched = 0
      var results = []
      var wasError = false
      function _fetch (i) {
        if (i < urls.length) {
          $.ajax({
            url: urls[i],
            success: function (result) {
              // report success when all the results are in
              results[i] = result
              if (++fetched == urls.length) {
                success(results)
              }
            },
            error: function () {
              if (!wasError) {
                wasError = true
                error()
              }
            }
          })
          // re-prime right away
          _fetch(i + 1)
        }
      }
      _fetch(0)
    }
    
    var urls = ["url1.html", "url2.html", ...]
    fetch(urls, function (results) {
      $.each(results, ...)
    }, function () {
      // error :(
    })
    

    Happy coding.

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

Sidebar

Related Questions

Is it somehow possible to access a user's public key files (located in ~/.ssh
Is it somehow possible, via CSS, to select labels which contains *: at the
Is it somehow possible to load a web.config file in a WinForms app and
Is it possible to load external file (not in WebContent folder) and then somehow
I'm wondering if its possible to load a html page but only display a
Is it somehow possible to create something like a masterpage (asp.net) in jQuery Mobile?
Is it somehow possible to use the 'With' keyword on an existing object? I
Is it somehow possible to identify unused variables in a PHP file in Emacs?
Is it somehow possible, to figure out client PC CPU capabilities? I want my
On an apache server using the worker MPM, is it somehow possible to open

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.