Javascript redirect to page
Posted: Tue May 19, 2015 1:59 pm
Hi
I'm using this bit of code that I found on the forum:
var onDelay = function(){
alert("delayed alert");
};
//Delay for 2s.
window.setTimeout(onDelay, 2000);
What I want to do though is replace the alert with a redirect to another page in the app.
Regards
Andy