Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Last active August 29, 2015 14:07
Show Gist options
  • Save bbrochier/31788202f328210660b3 to your computer and use it in GitHub Desktop.
Save bbrochier/31788202f328210660b3 to your computer and use it in GitHub Desktop.
Ajax call
var jqxhr =
$.ajax({
url:"ajax.php",
data: //json, xml, text...
})
.done(function(data){
console.log(data); //response from ajax.php
})
.fail(function() {
console.log( "ajax error" );
})
.always(function(){
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment