Skip to content

Instantly share code, notes, and snippets.

@caio-vinicius
Last active January 10, 2021 21:44
Show Gist options
  • Save caio-vinicius/190f30593030a9ad5744b277c4aacfb9 to your computer and use it in GitHub Desktop.
Save caio-vinicius/190f30593030a9ad5744b277c4aacfb9 to your computer and use it in GitHub Desktop.
setInterval(function() {
fetch(URL).then(function (result) {
if (result.status == 200) {
window.location.href = URL;
}
})
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment