Skip to content

Instantly share code, notes, and snippets.

@hfuller
Created June 2, 2013 01:13
Show Gist options
  • Save hfuller/5692254 to your computer and use it in GitHub Desktop.
Save hfuller/5692254 to your computer and use it in GitHub Desktop.
$.get("get.php" + param)
.done(function(data){
$('#content').html(data);
$('#status').html("got request back, sleeping");
})
.fail(function(){
$('#status').html("request failed! reconnecting");
$('#failcount').html(($('#failcount').html())*1 + 1); //LOL JQUERY
//alert("BAD THINGS");
})
.always(function(){
setTimeout(proc,2000);
});
p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment