Answers for "javascript wait 5 seconds then redirect"

2

javascript redirect after 5 secinds

setTimeout(function(){
            window.location.href = 'https://url.com';
         }, 5000);
Posted by: Guest on November-25-2019
4

Redirect to any page after 5 seconds in Javascript

// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Posted by: Guest on July-17-2020

Code answers related to "javascript wait 5 seconds then redirect"

Code answers related to "Javascript"

Browse Popular Code Answers by Language