Package-level declarations
Types
The CustomEvent
interface can be used to attach custom data to an event generated by an application.
The EventTarget
interface is implemented by objects that can receive events and may have listeners for them.
The ProgressEvent
interface represents events that measure the progress of an underlying process, like an HTTP request (e.g., an XMLHttpRequest
, or the loading of the underlying resource of an img, audio, video, style or link).
Properties
Functions
The addEventListener()
method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
The removeEventListener()
method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.