Back And Forward Buttons
navigation 1996 still worksBrowser back and forward, as buttons on the page.
In 2026: Works unchanged.
Where it came from: Netscape JavaScript 1.0 history object, 1996. MDN ↗
<a href="javascript:history.back()"><< Back</a> |
<a href="javascript:history.forward()">Forward >></a> |
<a href="javascript:location.reload()">Reload</a>
<!-- Or as real buttons -->
<button onclick="history.back()">« Back</button>
<button onclick="history.forward()">Forward »</button>