Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using this code:

var pendingRequest =  new Ajax.Request(myUrl, {
               method: 'post',
               postBody: soapMsg,
               contentType: "text/xml",
               onSuccess: function(transport) {
                    doSomething(transport);
               },
               onFailure: function(t) {
                    OnAjaxFailure(t);
               },
               onException: function(req,exception) { 
                    OnAjaxException(req, exception);          
               } 

            }); 

How can I cancel the request and discard the data, or failing that, how could I identify the request (using a name/guid/whatever) inside my onSuccess method so that I can tell which request is completing?

I was thinking of doing an array.push(pendingRequest) to keep track of pending requests

I want to allow the user to interrupt their request, change the input values and resubmit.

Sometimes the original request ends after the new request and I'm replacing the "correct" data with the "old" data. (search results return 50,000 records on the first query and 5 in the second, for example)

Thanks,

share|improve this question

2 Answers

up vote 11 down vote accepted

You can use XHR's abort.

The XHR-object is stored in pendingRequest.transport, so using

pendingRequest.transport.abort()

would cancel the request.

share|improve this answer
perfect, thank you – Mr. Graves Jul 2 '10 at 16:51

I reccomend this article: http://blog.pothoven.net/2007/12/aborting-ajax-requests-for-prototypejs.html works for me.

share|improve this answer
thats an oooooooooooooold link – Nasaralla Mar 1 at 17:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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