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