Skip to content

Instantly share code, notes, and snippets.

@willwei
Created March 13, 2015 14:26
Show Gist options
  • Save willwei/307ba0484abd30f2464e to your computer and use it in GitHub Desktop.
Save willwei/307ba0484abd30f2464e to your computer and use it in GitHub Desktop.
jquery ajax gist
$.ajax({
url: "/getData",
timeout:3000 //3 second timeout
}).done(function(){
//do something
}).fail(function(jqXHR, textStatus){
if(textStatus == 'timeout')
{
alert('Failed from timeout');
//do something. Try again perhaps?
}
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment