Search code examples
javascriptjqueryajaxcancellation

how can I cancel an Ajax request?


In phonegap how to cancel an ajax request in program, I would like to set cancel button for control the request when it's too slow

$.ajax({
    type: "GET",
    url: url,
    success: function(m) {
        alert( "success");
    }
});

Solution

  • hi it's similar as Abort Ajax requests using jQuery,anyway This can help you

     var ab = $.ajax({  type: "GET",  url: url,  success: function(m)  {    alert( "success");  } });
    
    //kill the request
    ab.abort()