I\'m using jquery for making ajax requests
$.ajax( url: \"http://someurl.org\", success: function() { ... } );
How can I manually s
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.