DETAILS

2009-06-23 23:07:00

Perform redirection to other page after a specified time

We can perform redirection to another page from the current page using the following tag.

<meta http-equiv="refresh" content="5;url=destination URL" />


Here we set the meta tag to perform a redirection to the destination url after 5 seconds. If you need a
you need an immediate redirection avoid the time specified and the code would be like:

<meta http-equiv="refresh" content="0;url=Destination url" />




Comments: