Q:

Redirect to any page after 5 seconds in Javascript

// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
2
<!DOCTYPE html>
<html>
   <body>
      <script>
         setTimeout(function(){
            window.location.href = 'https://www.tutorialspoint.com/javascript/';
         }, 5000);
      </script>
      <p>Web page redirects after 5 seconds.</p>
   </body>
</html>
0
setTimeout(function(){
            window.location.href = 'https://url.com';
         }, 5000);
0

New to Communities?

Join the community