All TalkersCode Topics

Follow TalkersCode On Social Media

devloprr.com - A Social Media Network for developers Join Now ➔

Redirect Webpage After Delay Using JavaScript

Last Updated : Jul 1, 2023

IN - JavaScript HTML | Written & Updated By - Ashish

In this tutorial we will show you how to redirect webpage to another after some delay using JavaScript because sometimes there are situations when you have to redirect user to another page after some time so this kind of method will help to solve that problem.

You may also like detect and redirect to mobile site using PHP.

Redirect Webpage After Delay Using JavaScript

To Redirect Webpage After Delay It Takes Only One Step:-

  1. Make a HTML file and define markup and scripting

Step 1. Make a HTML file and define markup and scripting

We make a HTML file and save it with a name redirect.html

<html>
<head>
<script type="text/javascript">
function redirect()
{
 var count = 10;
 setInterval(function()
 {
  document.getElementById('countdown').innerHTML = "Redirect In "+count+" Seconds...";
  if (count == 0) 
  {
   window.location = ''; 
  }
  count--;
 },1000);
}
</script>
</head>
<body>
<div id="wrapper">
<div id="redirect_div">
 <input type="button" value="Click To Redirect" onclick="redirect();">
 <p id="countdown"></p>
</div>
</div>
</body>
</html>

In this step we create a button to call redirect() function and in redirect() function we create a 'count' variable and set the value 10.

Here 10 represents the sec it takes to redirect to another page and then create if() condition to check if count=0 redirect to same page we use blank in window.location you can use any page to redirect and then we decrement the count to -1 and when the count reaches to 0 it redirect the user to another page.

You may also like print webpage using javascript.

Thats all, this is how to redirect webpage after delay using JavaScript. You can customize this code further as per your requirement. And please feel free to give comments on this tutorial.

I hope this tutorial on redirect webpage after delay using JavaScript helps you and the steps and method mentioned above are easy to follow and implement.