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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:57:19+00:00 2026-06-08T04:57:19+00:00

I have multiple ajax requests some request data every minute others are initiated by

  • 0

I have multiple ajax requests some request data every minute others are initiated by the user through a ui.

$.get('/myurl', data).done(function( data ){
   // do stuff..
});

The request might fail due to an authentication failure.
I’ve setup a global .ajaxError() method for catching any failed requests.

$(document).ajaxError(function( e, jqxhr ){
   // Correct error..
});

After I catch the error I reset authorization.
Resetting the authorization works but the user has to manually re initiate the ajax call (through the ui).

How do I resend the failed request using the jqxhr originally sent?

(I’m using jQuery for the ajax)

  • 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-08T04:57:21+00:00Added an answer on June 8, 2026 at 4:57 am

    Found this post that suggests a good solution to this problem.

    The main thing is to use $.ajaxPrefilter and replace your error handler with a custom one that checks for retries and performs a retry by using the closure’s ‘originalOptions’.

    I’m posting the code just in case it will be offline in the future. Again, the credit belongs to the original author.

    // register AJAX prefilter : options, original options
    $.ajaxPrefilter(function( options, originalOptions, jqXHR ) {
    
       originalOptions._error = originalOptions.error;
    
       // overwrite error handler for current request
       options.error = function( _jqXHR, _textStatus, _errorThrown ){
    
       if (... it should not retry ...){
    
             if( originalOptions._error ) originalOptions._error( _jqXHR, _textStatus, _errorThrown );
             return;
          };
    
          // else... Call AJAX again with original options
          $.ajax( originalOptions);
       };
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to have one AJAX request with multiple responses? For example,
I have a code similar to this: $.ajax({ success: function(data) { text = '';
I have a TreeView with some nodes inside of it. Whenever the user clicks
I have a page with multiple links that each perform different AJAX calls and
I have a page that uses an AJAX request (using Prototype's Ajax.Request()) to validate
just been trying to recieve the session value from multiple jquery ajax requests on
I'm getting some strange results sending multiple asynchronous AJAX calls to the same java
I have some problems with ajax responses. Everything is working okay, however I got
I'm currently working on a project which uses many ajax requests to access data
I have a jsp page where I'm trying to send multiple (two currently) ajax

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.