Skip to content

Instantly share code, notes, and snippets.

@thedvlprs
Created May 30, 2019 17:39
Show Gist options
  • Save thedvlprs/513b86ef36ef6a1611ba47531af5bb7e to your computer and use it in GitHub Desktop.
Save thedvlprs/513b86ef36ef6a1611ba47531af5bb7e to your computer and use it in GitHub Desktop.
Автоматическое обновление страницы браузера на JavaScript
// Автоматическое обновление страницы браузера на JavaScript
<script> setTimeout(function(){ location.reload(); }, 15000); </script>
// 15000 - это миллисекунды, через которые должна обновиться веб-страница.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment