add time before redirect js 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: javascript redirect after 5 secinds
setTimeout(function(){
window.location.href = 'https://url.com';
}, 5000);