How do I create an executable "reload page" behavior.

  • Thread starter Thread starter Guest
  • Start date Start date
Just create a link to the same page, with a query after the extension

<a href="pagename.htm?">refresh page</a>
The text link can be replaced by a button image.

The above link will refresh the page from the server, even through
AOL's cache.
 
If you really want a button:


<form><INPUT TYPE="button" VALUE="enter button text here between the ""
marks" onClick='parent.location="javascript:location.reload()"'></form>
 
Back
Top