Using jQuery, how can I cancel/abort an Ajax request that I have not yet received the response from?

link|improve this question

67% accept rate
feedback

5 Answers

up vote 286 down vote accepted

Most of the jQuery Ajax methods return an XMLHttpRequest (or the equivalent) object, so you can just use abort().

See the documentation:

  • abort Method (MSDN). Cancels the current HTTP request.
  • abort() (MDC). If the request has been sent already, this method will abort the request.
var xhr = $.ajax({
    type: "POST",
    url: "some.php",
    data: "name=John&location=Boston",
    success: function(msg){
       alert( "Data Saved: " + msg );
    }
});

//kill the request
xhr.abort()

UPDATE: As of jQuery 1.5 the returned object is a wrapper for the native XMLHttpRequest object called jqXHR. This object appears to expose all of the native properties and methods so the above example still works. See The jqXHR Object (jQuery API documentation).

link|improve this answer
Can you please elaborate on what abort() exactly does? – Yuval Adam Jan 15 '09 at 13:04
1  
@Yuval, developer.mozilla.org/en/XMLHttpRequest#abort() – 999 Jan 15 '09 at 13:15
2  
It's like clicking the 'stop' button on your browser. It cancels the request. You can then reuse the same XHR object for another request. – meouw Jan 15 '09 at 13:19
77  
Of note, if the server has already received the request, it may continue processing the request (depending on the platform of the server) even though the browser is no longer listening for a response. There is no reliable way to make the web server stop in its tracks with processing a request that is in progress. – Erv Walter May 15 '09 at 17:50
3  
@pepkin88: I don't think the success function is called. As Erv Walter said, the browser is 'no longer listening for a response.' I checked this by having a Wait and Abort buttons, and the server would wait 5 seconds. After aborting though, the success function was never called. – user420667 Aug 18 '11 at 17:25
show 3 more comments
feedback

It's an asynchronous request, meaning once it's sent it's out there.

In case your server is starting a very expensive operation due to the AJAX request, the best you can do is open your server to listen for cancel requests, and send a separate AJAX request notifying the server to stop whatever it's doing.

Otherwise, simply ignore the AJAX response.

link|improve this answer
In this context, asynchronous simply means the request doesn't interrupt the flow of the script. Browsers now have the ability to abort the request prematurely before the request is completed. – ElephantHunter Apr 10 at 19:12
feedback

You can't recall the request but you can set a timeout value after which the response will be ignored. See this page for jquery AJAX options. I believe that your error callback will be called if the timeout period is exceeded. There is already a default timeout on every AJAX request.

link|improve this answer
feedback

meouw's solution is correct, but if you're are interested in more control then you could try the Ajax Manager plugin for jQuery.

link|improve this answer
feedback

Save the calls you make on a array, then call xhr.abort() on each.

HUGE CAVEAT: you can abort a request, but that only the clientside, the server side could still be running the request. If you are using something like PHP/ASP with session data, the session data is locked until the ajax has finished. So to allow the user to continue browsing the website, you have to call session_write_close().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.