Auto Refresh

Written By Chotot Dudulzz on Wednesday, July 13, 2011 | 11:52 AM

Refresh function in use to make "refresher" reload page or website. Refresh function is the same as the refresh function available on the Internet browser, the difference is that this function is made to work automatically, ie the user does not need to press the refresh button on the tool bar.


To make it just put the code below:
<meta http-equiv="refresh" content="10"/>
>
Save the above code between
<head> .... </head>

description above code, content = "10" number of 10 shows that the refresh process will be done in a span of 10 seconds.
refresh function can also be used as a redirect from the URL to another URL address
This function can be made with the code:
<meta http-equiv="refresh" content="0;URL=URL address destination"/>

Related Post