History: forward() method
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.
Syntax
js
forward()
Parameters
None.
Return value
None (undefined).
Exceptions
SecurityErrorDOMException-
Thrown if the associated document is not fully active.
Examples
The following examples create a button that moves forward one step in the session history.
HTML
html
<button id="go-forward">Go Forward!</button>
JavaScript
js
document.getElementById("go-forward").addEventListener("click", (e) => {
history.forward();
});
Specifications
| Specification |
|---|
| HTML Standard # dom-history-forward-dev |
Browser compatibility
BCD tables only load in the browser