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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:15:14+00:00 2026-05-23T00:15:14+00:00

I have seen that you can specify what to do generally if an ajax

  • 0

I have seen that you can specify what to do generally if an ajax request fails, is it possible to have it try again in some sort of a loop so that it tries at least x amount of times before it stops? I have used this code before:

$.ajaxSetup({
  "error":function() {   
    alert("error");
}});

Which will apply to all AJAX requests (correct me if I’m wrong).

I want to do something like this:

$.ajaxSetup({
  "error":function() {   
    $(this).ajax;
}});

Would this work? Or even better: would this be the right way to do it? I would wrap the retry in a count system so that it doesn’t infinitely retry. In my application 9 times out of 10 it will work correctly but every now and then one of the APIs I’m interfacing with will return an error.

Any suggestions would help, thanks!

  • 1 1 Answer
  • 1 View
  • 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-23T00:15:14+00:00Added an answer on May 23, 2026 at 12:15 am

    You can try something like this:

        var attempts;
        function doAjaxRequest() {
            attempts = 0;
            doAjaxRequestLoop();
        }
    
        function doAjaxRequestLoop() {
            attempts += 1;
            if (attempts > 10) {
                alert('too many attempts.');
                return;
            }
    
            $.ajax({ // do your request
                error: function (error) {
                    doAjaxRequestLoop();
                }
            });
        }
    
    </script>
    

    Although I might recommend against it. If the request fails you may want to find out why it failed. What if the user lost their internet connect? Any further attempts are likely to fail again so why retry?

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

Sidebar

Related Questions

If you've used Google Wave or iGoogle you have probably seen that you can
I have seen lately a couple of programs that can be launched as daemons
I have created a jQuery animation that can be seen by clicking the Preview
I have created a drop down with jQuery that can be seen here by
Can someone recommend a hosted solution that answers the following requirements (I have seen
You've probably seen web apps that have an email dropbox. Users can send email
I have seen that typing about:somekeywords in browsers address bar gives some information. What
I've written an method that does some graphics calculations. There, you can specify a
I have seen that in using :styles attributes in Paperclip, you ca specify sizes
I have seen that BindableAttribute is used to decorate public properties in custom controls.

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.