Firefox Tomorrow

web api instance property

NavigationTransition: committed property

View on MDN ↗

The committed read-only property of the NavigationTransition interface returns a Promise that fulfills when currentEntry is updated and the new URL is displayed in the browser, marking the navigation as committed. This happens after all precommit handlers for the navigation are fulfilled.

The committed promise rejects if any precommit handler rejects.

Value

A Promise that resolves to undefined.

Examples

async function lockInNavigation() {
  await navigation.transition.committed;
  // Navigation has committed successfully
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also