Skip to content

Instantly share code, notes, and snippets.

@rodrigo-x
Created October 15, 2012 00:32
Show Gist options
  • Save rodrigo-x/3890280 to your computer and use it in GitHub Desktop.
Save rodrigo-x/3890280 to your computer and use it in GitHub Desktop.
snippet - ping..
$.ping = (function() {
var time_stamp = new Date;
$.ajax({ type: "POST",
url: "server.php",
data: {....},
success: (function( output ) {
ping = new Date - time_stamp;
})
});
});
$.ping();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment