redirect in 5 secs in js code example
Example 1: Redirect to any page after 5 seconds in Javascript
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Example 2: javascript redirect after 5 secinds
setTimeout(function(){
window.location.href = 'https://url.com';
}, 5000);