+ 1
How can redirect to another page automatically after few seconds in html only?
3 ответов
0
Use setTimeout within script tag in html
+ 2
Use
setTimeout (function () {
window.location.href = "your_new_page_link";
}, 1000);
where 1000 is 1 second.
0
OK I will search about it