ItSolutionStuff.com

JQuery Redirect to Another Page After 5 Seconds Example

By Hardik Savani • July 6, 2023
jQuery

If you are looking for how to redirect to another page in jquery after 5 seconds then i will give you simple example to redirect to url after 10 seconds, 15 seconds, 30 seconds or any specific time in jquery. we will use setTimeout() for redirect to url after 5 seconds in jquery.

In this example we will create one button to redirect another page after 2 seconds. when you click on that button, then button will say you "Redirecting soon....". After 5 seconds it will redirect to given url page.

You can see bellow full example that will help to redirecting to another page url in jquery.

Example:

<!DOCTYPE html>

<html>

<head>

<title>Jquery Redirect to Another Page After 5 Seconds Example - ItSolutionStuff.com</title>

<script src="http://code.jquery.com/jquery-1.9.1.js" type="text/javascript"></script>

</head>

<body>

<button>Click to redirect</button>

<script type="text/javascript">

$("button").click(function(){

$(this).text('Redirecting soon....');

var delay = 2000;

var url = 'https://itsolutionstuff.com'

setTimeout(function(){ window.location = url; }, delay);

})

</script>

</body>

</html>

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Selected Radio Button Value in JQuery?

Read Now →

How to Remove Empty or Null Values from JSON using JQuery?

Read Now →

Add Edit Delete Table Row Example using JQuery

Read Now →

How to Remove Empty or Null Values from Array in JQuery?

Read Now →

JQuery - How to Push Specific Key and Value in Array?

Read Now →

How to Remove All Spaces from String in JQuery?

Read Now →

JQuery Reload Page After 5 Seconds Example

Read Now →

JQuery Email Autocomplete using Email-autocomplete JS

Read Now →

JQuery Hide and Show Password using Eye Icon Example

Read Now →

JQuery Chosen Multi Select Dropdown Example

Read Now →

How to Get Max Attribute Value in JQuery?

Read Now →

Check and Uncheck All Checkbox using JQuery Example

Read Now →

How to Allow Only One Checkbox Checked at a Time in JQuery?

Read Now →

How to Check Object is Empty or Not in JQuery?

Read Now →