FocusEvent: FocusEvent() constructor
The FocusEvent()
constructor returns a newly created
FocusEvent
object with an optional EventTarget
. When the
event has both a source and a destination, the relatedTarget
value must be
set to the other target.
Syntax
js
new FocusEvent(type)
new FocusEvent(type, options)
Parameters
The FocusEvent()
constructor also inherits arguments from
UIEvent()
and from Event()
.
type
-
A string with the name of the event. It is case-sensitive and browsers set it to
blur
,focus
,focusin
, orfocusout
. options
Optional-
An object that, in addition of the properties defined in
UIEvent()
, can have the following properties:-
An
EventTarget
representing the secondary target of aFocusEvent
. It defaults tonull
.
-
Specifications
Specification |
---|
UI Events # dom-focusevent-focusevent |
Browser compatibility
BCD tables only load in the browser
See also
- The
FocusEvent
interface it belongs to.