hi there,
Instead of using the REFRESH button on the menu bar of my computer,
how can I create my own "refresh-button"on my html page (javascript)?
thanks
Printable View
hi there,
Instead of using the REFRESH button on the menu bar of my computer,
how can I create my own "refresh-button"on my html page (javascript)?
thanks
Simple
Code:<a href="javascript:window.location.reload()">Refresh</a>
Or as a button:
<input type="button" value="Refresh" onclick="window.location.reload()" />