Answers for "javascript redirect to url after 5 seconds"

0

javascript to redirect to another page after 5 seconds

<!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>
Posted by: Guest on August-16-2020
1

change url with javascript after 5 seconds

window.setTimeout(function(){
    window.location.href = "https://www.google.co.in";
}, 5000);
Posted by: Guest on October-18-2020
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 redirect to url after 5 seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language