web api instance property
NavigationDestination: sameDocument property
The sameDocument read-only property of the
NavigationDestination interface returns true if the navigation is to the same document as the current Document value, or false otherwise.
This is useful for checking whether the navigation will be same-document or cross-document.
Value
A boolean.
Examples
navigation.addEventListener("navigate", (event) => {
console.log(event.destination.sameDocument);
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.