I'm using jquery for making ajax requests
$.ajax(
url: "http://someurl.org",
success: function() { ... }
);
How can I manually stop my particular ajax request?
The $.ajax()
method returns an object that could be used to do that:
var xhr = $.ajax(
url: "http://someurl.org",
success: function() { ... }
);
and then later when you want to stop the request:
xhr.abort();
ajax requests are HTTP transactions once made cannot be stopped. You can stop ajax request from being initiated but not kill the already made request.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With