View Full Version : Is there a way to have a "refresh" button?


sebluver
04-28-2003, 09:44 PM
I mean on your page-so that they press "refresh" and it refreshes...

thezeppzone
04-28-2003, 09:47 PM
<a href="javascript:location.reload()">Refresh</a>

epolady
04-28-2003, 09:48 PM
Not sure if this will work, but try

<input type=button value="Refresh" onclick="javascript:location.reload()">

sebluver
04-28-2003, 09:51 PM
Okay. I'll try those two. Thanks both of ya!