Answers for "window location reload after some time"

0

location reload after 2 seconds

window.setTimeout(function(){location.reload()},3000)
Posted by: Guest on November-20-2020
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 "window location reload after some time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language