Answers for "javascript reload a page once"

4

javascript code to refresh page automatically

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

javascript reload page one time

window.onload = function() {
	if(!window.location.hash) {
		window.location = window.location + '#loaded';
		window.location.reload();
	}
}
Posted by: Guest on June-10-2020

Code answers related to "javascript reload a page once"

Code answers related to "Javascript"

Browse Popular Code Answers by Language