Horje
jquery cancel ajax request on click Code Example
jquery cancel ajax request on click
var xhr = $.ajax({
    type: "POST",
    url: "some.php",
    data: "name=John&location=Boston",
    success: function(msg){
       alert( "Data Saved: " + msg );
    }
});

//kill the request
xhr.abort()




Javascript

Related
convert accent to ascii js Code Example convert accent to ascii js Code Example
free JSON hosting Code Example free JSON hosting Code Example
how to create an array of specific length in javascript Code Example how to create an array of specific length in javascript Code Example
ajax post cancel request Code Example ajax post cancel request Code Example
javascript  anagram check Code Example javascript anagram check Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7