Skip to content

Instantly share code, notes, and snippets.

@srkirkland
Created August 19, 2011 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srkirkland/1157658 to your computer and use it in GitHub Desktop.
Save srkirkland/1157658 to your computer and use it in GitHub Desktop.
JavaScript Heartbeat function
<script>
setInterval(function () {
$.get("/", null, function () {});
}, 10000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment