Skip to content

Instantly share code, notes, and snippets.

@adirkuhn
Created November 11, 2016 13:50
Show Gist options
  • Save adirkuhn/29e868028d0ed67c43356717581e84fc to your computer and use it in GitHub Desktop.
Save adirkuhn/29e868028d0ed67c43356717581e84fc to your computer and use it in GitHub Desktop.
var jqxhr = $.post( "example.php", function() {
alert( "success" );
})
.done(function() {
alert( "second success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "finished" );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment