I need a transition page that will display for 2 seconds before automatically redirecting to the home page. How do I do this? I can't seem to get delay to work for me.
You can just use setTimeout()
directly, like this:
setTimeout(function() { window.location.href = "/NewPage.aspx"; }, 2000);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With