Created
June 20, 2009 13:30
-
-
Save adamstac/133161 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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