Перенаправить на любую страницу через 5 секунд в JavaScript
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Mr. Samy
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);