W3cubDocs

/Web APIs

Navigation: navigatesuccess event

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The navigatesuccess event of the Navigation interface is fired when a successful navigation has finished.

In the case of an intercepted navigation, this would occur after any promises returned by your intercept() handler are fulfilled. The NavigationTransition.finished promise will also fulfill at the same time.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

js

addEventListener("navigatesuccess", (event) => {});

onnavigatesuccess = (event) => {};

Event type

A generic Event.

Examples

You might deal with a successful navigation by hiding a previously displayed progress indicator, like this:

js

navigation.addEventListener("navigatesuccess", (event) => {
  loadingIndicator.hidden = true;
});

Or you might show an error message on failure:

js

navigation.addEventListener("navigateerror", (event) => {
  loadingIndicator.hidden = true; // also hide indicator
  showMessage(`Failed to load page: ${event.message}`);
});

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
navigatesuccess_event 102 102 No No 88 No 102 102 No 70 No 19.0

See also

© 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/Navigation/navigatesuccess_event