Answers for "window.location.replace delay"

1

how to delay redirect in javascript

// redirect to google after 5 seconds
window.setTimeout(function() {
    window.location.href = 'http://www.google.com';
}, 5000);
Posted by: Guest on January-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language