redirect page after alert 5 sec javascript code example
Example: Redirect to any page after 5 seconds in Javascript
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);