Skip to content

Instantly share code, notes, and snippets.

@ardysnippets
Created March 13, 2012 14:54
Show Gist options
  • Save ardysnippets/2029261 to your computer and use it in GitHub Desktop.
Save ardysnippets/2029261 to your computer and use it in GitHub Desktop.
JavaScript: Auto-refresh/loading of dynamic data
$(function() {
var auto_refresh = setInterval(
function(){
console.log(Math.random());
},
1000
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment