toggle menu
kilua-project
0.0.15
common
switch theme
search in API
kilua-dom
/
web.dom.events
/
EventTarget
Event
Target
abstract
class
EventTarget
:
JsAny
Exposes the JavaScript
EventTarget
to Kotlin
Inheritors
AudioTrackList
VideoTrackList
TextTrackList
TextTrack
TextTrackCue
Window
ApplicationCache
EventSource
WebSocket
MessagePort
BroadcastChannel
WorkerGlobalScope
Worker
SharedWorker
Node
MediaQueryList
Clipboard
MediaKeySession
MediaStream
MediaStreamTrack
MediaDevices
MediaSource
SourceBuffer
SourceBufferList
FileReader
Notification
Performance
ServiceWorker
ServiceWorkerRegistration
ServiceWorkerContainer
XMLHttpRequestEventTarget
Members
Constructors
Event
Target
Link copied to clipboard
constructor
(
)
Functions
add
Event
Listener
Link copied to clipboard
fun
addEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
)
fun
addEventListener
(
type
:
String
,
callback
:
EventListener
?
)
fun
addEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
,
options
:
Boolean
)
fun
addEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
,
options
:
AddEventListenerOptions
)
fun
addEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
Boolean
)
fun
addEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
AddEventListenerOptions
)
dispatch
Event
Link copied to clipboard
fun
dispatchEvent
(
event
:
Event
)
:
Boolean
remove
Event
Listener
Link copied to clipboard
fun
removeEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
)
fun
removeEventListener
(
type
:
String
,
callback
:
EventListener
?
)
fun
removeEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
,
options
:
Boolean
)
fun
removeEventListener
(
type
:
String
,
callback
:
(
Event
)
->
Unit
?
,
options
:
EventListenerOptions
)
fun
removeEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
Boolean
)
fun
removeEventListener
(
type
:
String
,
callback
:
EventListener
?
,
options
:
EventListenerOptions
)