NavigationPrecommitController

The NavigationPrecommitController interface of the Navigation API is passed as an argument to a navigation precommit handler callback.

MDN Reference

Functions

Link copied to clipboard

The addHandler() method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.

Link copied to clipboard
fun redirect(url: String, options: NavigationNavigateOptions = definedExternally)

The redirect() method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.

fun redirect(url: URL, options: NavigationNavigateOptions = definedExternally)