Answers for "how to make a javascript function that reload a page"

145

refresh window js

window.location.reload();
Posted by: Guest on April-05-2020
4

javascript code to refresh page automatically

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

how to reload window in javascript

location.reload():
Posted by: Guest on August-04-2021

Code answers related to "how to make a javascript function that reload a page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language