Skip to content

Instantly share code, notes, and snippets.

@kprimdal-dk
Created October 23, 2012 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kprimdal-dk/3937592 to your computer and use it in GitHub Desktop.
Save kprimdal-dk/3937592 to your computer and use it in GitHub Desktop.
Javascript: Page Reload Every X miliseconds
<script>
function reFresh() {
location.reload(true)
}
window.setInterval("reFresh()",10000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment