The History.go()
method loads a specific page from the session history. You can use it to move forwards and backwards through the history depending on the value of a parameter.
This method is asynchronous. Add a listener for the popstate
event in order to determine when the navigation has completed.
Syntax
Parameters
delta
Optional
-
The position in the history to which you want to move, relative to the current page. A negative value moves backwards, a positive value moves forwards. So, for example, history.go(2)
moves forward two pages and history.go(-2)
moves back two pages. If no value is passed or if delta
equals 0, it has the same result as calling location.reload()
.
Return value
Examples
To move back one page (the equivalent of calling back()
):
To move forward a page, just like calling forward()
:
To move forward two pages:
To move backwards by two pages:
And, finally either of the following statements will reload the current page:
history.go();
history.go(0);
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
go |
1 |
12 |
1 |
10 |
≤12.1 |
1 |
4.4 |
18 |
4 |
≤12.1 |
1 |
1.0 |
See also