Kotlin Wrappers API Reference
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
kotlin-browser
/
web.navigation
/
Navigation
Navigation
open
class
Navigation
:
EventTarget
(
source
)
MDN Reference
Members
Properties
activation
Link copied to clipboard
val
activation
:
NavigationActivation
?
MDN Reference
can
Go
Back
Link copied to clipboard
val
canGoBack
:
Boolean
MDN Reference
can
Go
Forward
Link copied to clipboard
val
canGoForward
:
Boolean
MDN Reference
current
Entry
Link copied to clipboard
val
currentEntry
:
NavigationHistoryEntry
?
MDN Reference
oncurrententrychange
Link copied to clipboard
var
oncurrententrychange
:
EventHandler
<
NavigationCurrentEntryChangeEvent
,
Navigation
,
Navigation
>
?
MDN Reference
onnavigate
Link copied to clipboard
var
onnavigate
:
EventHandler
<
NavigateEvent
,
Navigation
,
Navigation
>
?
MDN Reference
onnavigateerror
Link copied to clipboard
var
onnavigateerror
:
EventHandler
<
ErrorEvent
,
Navigation
,
Navigation
>
?
MDN Reference
onnavigatesuccess
Link copied to clipboard
var
onnavigatesuccess
:
EventHandler
<
Event
,
Navigation
,
Navigation
>
?
MDN Reference
transition
Link copied to clipboard
val
transition
:
NavigationTransition
?
MDN Reference
Functions
back
Link copied to clipboard
fun
back
(
options
:
NavigationOptions
=
definedExternally
)
:
NavigationResult
MDN Reference
dispatch
Event
Link copied to clipboard
fun
dispatchEvent
(
event
:
Event
)
:
Boolean
entries
Link copied to clipboard
fun
entries
(
)
:
JsIterator
<
NavigationHistoryEntry
>
MDN Reference
forward
Link copied to clipboard
fun
forward
(
options
:
NavigationOptions
=
definedExternally
)
:
NavigationResult
MDN Reference
navigate
Link copied to clipboard
fun
navigate
(
url
:
String
,
options
:
NavigationNavigateOptions
=
definedExternally
)
:
NavigationResult
MDN Reference
reload
Link copied to clipboard
fun
reload
(
options
:
NavigationReloadOptions
=
definedExternally
)
:
NavigationResult
MDN Reference
traverse
To
Link copied to clipboard
fun
traverseTo
(
key
:
String
,
options
:
NavigationOptions
=
definedExternally
)
:
NavigationResult
MDN Reference
update
Current
Entry
Link copied to clipboard
fun
updateCurrentEntry
(
options
:
NavigationUpdateCurrentEntryOptions
)
MDN Reference
when
Link copied to clipboard
fun
<
T
:
Event
>
when
(
type
:
EventType
<
T
>
,
options
:
ObservableEventListenerOptions
?
)
:
Observable
<
T
>