This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The currententrychange event of the Navigation interface is fired when the Navigation.currentEntry has changed.
This event will fire for:
Same-document navigations (e.g., back() or traverseTo()).
Replacements (i.e., a navigate() call with history set to replace).
Other calls that change the entry's state (e.g., updateCurrentEntry(), or the History API's History.replaceState()).
This event fires after the navigation is committed, meaning that the visible URL has changed and the NavigationHistoryEntry update has occurred. It is useful for migrating from usage of older API features like the hashchange or popstate events.
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("currententrychange", (event) => { })
oncurrententrychange = (event) => { }
A NavigationCurrentEntryChangeEvent. Inherits from Event.
Navigation data reporting:
navigation.addEventListener("currententrychange", () => {
const data = navigation.currentEntry.getState();
submitAnalyticsData(data.analytics);
});
Setting up a per-entry event:
navigation.addEventListener("currententrychange", () => {
navigation.currentEntry.addEventListener("dispose", genericDisposeHandler);
});
| Specification |
|---|
| HTML> # event-currententrychange> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
currententrychange_event |
102 | 102 | No | 88 | No | 102 | No | 70 | No | 19.0 | 102 | No |
© 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/Navigation/currententrychange_event