Skip to content

Instantly share code, notes, and snippets.

@andrewjamesford
Created February 10, 2012 11:04
Show Gist options
  • Save andrewjamesford/1788793 to your computer and use it in GitHub Desktop.
Save andrewjamesford/1788793 to your computer and use it in GitHub Desktop.
Auto refresh div via jQuery every 10 seconds
var auto_refresh = setInterval(
function () {
$('#voteListing ul').load('/home/listing').fadeIn("slow");
}, 10000); // refresh every 10000 milliseconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment