Refresh page only once

L

Lex

I want to reload a page only once. Therefor meta refresh is not
suitable, because then it refreshes every x seconds. Is there a
possibility to refresh only once?

regards,
Lex Ouburg
 
R

Richard Cornford

Lex said:
I want to reload a page only once. Therefor meta refresh
is not suitable, because then it refreshes every x seconds.
Is there a possibility to refresh only once?

Probably, but your reason for wanting to do this is probably as a hack
to 'solve' some other problem that would be better addressed directly.

Richard.
 
G

Grant Wagner

Lex said:
I want to reload a page only once. Therefor meta refresh is not
suitable, because then it refreshes every x seconds. Is there a
possibility to refresh only once?

regards,
Lex Ouburg

<a href="#" onclick="window.reload();return false;">Reload</a>

Of course, the user could just click the Reload button on their
browser, duplicating that functionality seems a bit silly.
 
I

Ian L

The window.location.reload() will reload the window. You could try
working with cookies or another window to keep track of the number of
time it has been refreshed.
 
G

Grant Wagner

Grant said:
<a href="#" onclick="window.reload();return false;">Reload</a>

Of course, the user could just click the Reload button on their
browser, duplicating that functionality seems a bit silly.

No it won't. Of course I meant:

<a href="#" onclick="window.location.reload();return
false;">Reload</a>
or
<a href="#" onclick="window.location.reload(true);return
false;">Reload</a> (which is supposed to force a GET regardless of
whether the document is currently cached or not)

Apologies for any problems this may have caused.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top