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);