Answers for "how to avoid reload page js"

4

javascript code to refresh page automatically

window.setTimeout(function () {
  window.location.reload();
}, 30000);
Posted by: Guest on January-09-2022
4

javascript reload page without refresh

<a href="javascript:window.top.location.reload(true)" class="continue">Continue</a>
Posted by: Guest on April-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language