Redirigir a cualquier página después de 5 segundos en 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);