This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The pushState() method of the History interface adds an entry to the browser's session history stack.
pushState(state, unused) pushState(state, unused, url)
stateThe state object is a JavaScript object which is associated with the new history entry created by pushState(). Whenever the user navigates to the new state, a popstate event is fired, and the state property of the event contains a copy of the history entry's state object.
The state object can be anything that can be serialized.
Note: Some browsers save state objects to the user's disk so they can be restored after the user restarts the browser, and impose a size limit on the serialized representation of a state object, and will throw an exception if you pass a state object whose serialized representation is larger than that size limit. So in cases where you want to ensure you have more space than what some browsers might impose, you're encouraged to use sessionStorage and/or localStorage.
unusedThis parameter exists for historical reasons, and cannot be omitted; passing an empty string is safe against future changes to the method.
url OptionalThe new history entry's URL. Note that the browser won't attempt to load this URL after a call to pushState(), but it may attempt to load the URL later, for instance, after the user restarts the browser. The new URL does not need to be absolute; if it's relative, it's resolved relative to the current URL. The new URL must be of the same origin as the current URL; otherwise, pushState() will throw an exception. If this parameter isn't specified, it's set to the document's current URL.
None (undefined).
SecurityError DOMException
Thrown if the associated document is not fully active, or if the provided url parameter is not a valid URL, or if the method is called too frequently.
DataCloneError DOMException
Thrown if the provided state parameter is not serializable.
In a sense, calling pushState() is similar to setting window.location = "#foo", in that both will also create and activate another history entry associated with the current document. But pushState() has a few advantages:
window.location keeps you at the same document only if you modify only the hash.window.location = "#foo"; only creates a new history entry if the current hash isn't #foo.Note that pushState() never causes a hashchange event to be fired, even if the new URL differs from the old URL only in its hash.
This creates a new browser history entry setting the state and url.
const state = { page_id: 1, user_id: 5 };
const url = "hello-world.html";
history.pushState(state, "", url);
const url = new URL(location);
url.searchParams.set("foo", "bar");
history.pushState({}, "", url);
| Specification |
|---|
| HTML> # dom-history-pushstate-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
pushState |
5 | 12 | 4Until Firefox 5, the passed object is serialized using JSON. Starting in Firefox 6, the object is serialized using the structured clone algorithm. This allows a wider variety of objects to be safely passed. |
11.5 | 5 | 18 | 4Until Firefox for Android 5, the passed object is serialized using JSON. Starting in Firefox for Android 6, the object is serialized using the structured clone algorithm. This allows a wider variety of objects to be safely passed. |
11.5 | 4 | 1.0 | 4.4 | 4 |
unused_parameter |
No | No | No | No | 5This feature may be removed, see bug 223190. |
No | No | No | 4This feature may be removed, see bug 223190. |
No | No | 4This feature may be removed, see bug 223190. |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/History/pushState