JQuery Abort Ajax

var xhr = $.ajax({
    type: "GET",
    url: "https://www.codegrepper.com/myapi.php",
    success: function(response){
       //do something
    }
});

xhr.abort(); //kill the request
Grepper