Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The NavigationCurrentEntryChangeEvent()
constructor creates a new NavigationCurrentEntryChangeEvent
object.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The NavigationCurrentEntryChangeEvent()
constructor creates a new NavigationCurrentEntryChangeEvent
object.
js
new NavigationCurrentEntryChangeEvent(type, init)
type
A string representing the type of event. In the case of NavigationCurrentEntryChangeEvent
this is always event
.
init
An object containing the following properties:
destination
A NavigationHistoryEntry
object representing the location being navigated to.
The type of the navigation that resulted in the change. Possible values — push
, reload
, replace
, and traverse
.
A developer would not use this constructor manually. A new NavigationCurrentEntryChangeEvent
object is constructed when a handler is invoked as a result of the currententrychange
event firing.
js
navigation.addEventListener("currententrychange", (event) => {
console.log(event.navigationType);
});
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
NavigationCurrentEntryChangeEvent |
102 | 102 | No | No | 88 | No | 102 | 102 | No | 70 | No | 19.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/NavigationCurrentEntryChangeEvent/NavigationCurrentEntryChangeEvent