How Can Twitter Help Your Business – Marketing Online
May 20, 2013Question:- How can we redirect a page after few seconds to a new page using javascript?
Answer :- You can easily redirect a page to another url after few seconds delay by using following javascript code.
<script type=”text/javascript”>
setTimeout(function(){window.location=”http://netgen.in”;}, 3000) //wait three seconds before continuing
</script>
Hope this helps you with your project/tasks.