Created
May 30, 2019 17:39
-
-
Save thedvlprs/513b86ef36ef6a1611ba47531af5bb7e to your computer and use it in GitHub Desktop.
Автоматическое обновление страницы браузера на JavaScript
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
// Автоматическое обновление страницы браузера на 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