Baseline Widely available
The forward()
method of the History
interface causes the browser to move forward one page in the session history. It has the same effect as calling history.go(1)
.
This method is asynchronous. Add a listener for the popstate
event in order to determine when the navigation has completed.
None.
Return valueNone (undefined
).
SecurityError
DOMException
Thrown if the associated document is not fully active. Browsers also throttle navigations and may throw this error, generate a warning, or ignore the call if it's called too frequently.
The following examples create a button that moves forward one step in the session history.
HTML<button id="go-forward">Go Forward!</button>
JavaScript
document.getElementById("go-forward").addEventListener("click", (e) => {
history.forward();
});
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3