setTime setTimeout code example
Example: javascript settimeout
// 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);