Jquery Redirect to Another Page After 5 Seconds Example
In this post we will give you information about Jquery Redirect to Another Page After 5 Seconds Example. Hear we will give you detail about Jquery Redirect to Another Page After 5 Seconds ExampleAnd how to use it also give you demo for it if it is necessary.
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://onlinecode'
setTimeout(function(){ window.location = url; }, delay);
})
</script>
</body>
</html>
I hope it can help you…
Hope this code and post will helped you for implement Jquery Redirect to Another Page After 5 Seconds Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs