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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:15:03+00:00 2026-06-13T07:15:03+00:00

Possible Duplicate: jquery $.ajax timeout setting The timeout works, but when the timeout occurs,

  • 0

Possible Duplicate:
jquery $.ajax timeout setting

The timeout works, but when the timeout occurs, I want to execute a function. do you have any ideas how to do this?

$.ajax({
    type: "GET", 
    url: "xajax.php", 
    timeout: 100, 
    data: "name=John&location=Boston", 
    success: function(msg) {
        alert( "Data Saved: " + msg );
    }
});
  • 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-13T07:15:04+00:00Added an answer on June 13, 2026 at 7:15 am

    Use complete:

    A function to be called when the request finishes (after success and
    error callbacks are executed). The function gets passed two arguments:
    The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string
    categorizing the status of the request (“success”, “notmodified”,
    “error”, “timeout”, “abort”, or “parsererror”). As of jQuery 1.5, the
    complete setting can accept an array of functions. Each function will
    be called in turn. This is an Ajax Event.

    or error:

    A function to be called if the request fails. The function receives
    three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a
    string describing the type of error that occurred and an optional
    exception object, if one occurred. Possible values for the second
    argument (besides null) are “timeout”, “error”, “abort”, and
    “parsererror”. When an HTTP error occurs, errorThrown receives the
    textual portion of the HTTP status, such as “Not Found” or “Internal
    Server Error.” As of jQuery 1.5, the error setting can accept an array
    of functions. Each function will be called in turn. Note: This handler
    is not called for cross-domain script and JSONP requests. This is an
    Ajax Event.

    Here is an example using complete:

        $.ajax({ 
        type: "GET", 
        url: "xajax.php", 
        timeout: 100, 
        data: "name=John&location=Boston", 
        success: function(msg){ alert( "Data Saved: " + msg ); },
        complete: function(jqXHR, textStatus) { 
            if (textStatus == "timeout") {
               alert('timeout');
            }
        }
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: jQuery: Return data after ajax call success I have the following function
Possible Duplicate: jQuery ajax return value I have this jQuery script: $('#headerSubmit').click(function() { var
Possible Duplicate: jQuery AJAX submit form I have a form on a page A,
Possible Duplicate: jQuery won't parse my JSON from AJAX query So I have parsed
Possible Duplicate: return AJAX callback return I have made a JQuery code using AJAX,
Possible Duplicate: Bind multiple events to jQuery 'live' method I have the following function:
Possible Duplicate: jquery ajax return: undefined I have written the following code to check
Possible Duplicate: jquery/ajax load new content when available i have a table named news
Possible Duplicate: jQuery: How to stop AJAX function escaping JSON string used to POST
Possible Duplicate: Wait until all jquery ajax request are done? I have an array

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.