redirect after time javascript code example
Example 1: how to delay redirect in javascript
// redirect to google after 5 seconds
window.setTimeout(function() {
window.location.href = 'http://www.google.com';
}, 5000);
Example 2: Redirect to any page after 5 seconds in Javascript
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);