Skip to content

Instantly share code, notes, and snippets.

@kyledecot
Created October 5, 2014 02:07
Show Gist options
  • Save kyledecot/e1da1547f151da461ae7 to your computer and use it in GitHub Desktop.
Save kyledecot/e1da1547f151da461ae7 to your computer and use it in GitHub Desktop.
setTimeout(function() {
$.getJSON('http://example.com/sdlfjkflkjsadklj.json', function(results) {
var newCheckins = [];
for (result in results) {
newCheckins.push('...');
}
$('#checkins').replaceWith(newCheckins);
});
}, 30000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment