You are here: irt.org | BBS | Re: How to refresh the homepage? [This BBS is closed]
Posted by Keith on June 15, 1998 at 09:17:32:
In Reply to: How to refresh the homepage? posted by Jeffrey on June 15, 1998 at 08:22:31:
: Can someone tell me how to reload the html page using javascript.
This works:
function reload () { history.go (0); }
and call it with something like:
<A HREF="javascript:reload ();">reload</A>
(or if you know the URL is constant, you could use document.location.href= "wherever" or if you don't mind missing out a few browsers, then document.location.reload () would do also)
regards, Keith
Follow-ups:
You are here: irt.org | BBS | Re: How to refresh the homepage? [This BBS is closed]