Event
Last updated
Was this helpful?
Last updated
Was this helpful?
⟩ event
the that
is asscociated with a particular event
contains details about that event
is passed as an argument to the .
properties of an Event object
type
(string) - event.type.
target
() -
object on which the event occurred. (event.target)
currentTarget
() -
the object on which the current handler was registered.
(in the handler, this
=== event..)
timeStamp
- relative timestamp (in ms).
isTrusted
- event dispatched by browser (true
) or script (false
).
(this
=== event. )
Eloquent JS ⟩
JS.info ⟩ ⟩
⟩