Skip to content

Instantly share code, notes, and snippets.

@adamstac
Created June 20, 2009 13:30
Show Gist options
  • Save adamstac/133161 to your computer and use it in GitHub Desktop.
Save adamstac/133161 to your computer and use it in GitHub Desktop.
// Automatically reloads the browser to help save time
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);", timeoutPeriod);
}
// Set the refresh to 20 seconds
timedRefresh(20000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment