'Hi, please am trying to put seconds before the link is redirected
Here is the code I have done, all I need now is the timer code so it can wait before the redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Solution 1:[1]
Something like this perhaps?
<script>
setTimeout(function () {
window.location.href = "http://mywebsite.com/home.html";
}, 3000);
</script>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | LongChalk |
