EventTarget
on which dispatchEvent
is called.
@param evt Specifies the event type, behavior, and contextual information to be used in processing the event.
@return The return value of dispatchEvent
indicates whether any of the listeners which handled the event called preventDefault
. If preventDefault
was called the value is false, else the value is true.
@exception EventException UNSPECIFIED_EVENT_TYPE_ERR: Raised if the Event
's type was not specified by initializing the event before dispatchEvent
was called. Specification of the Event
's type as null
or an empty string will also trigger this exception.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|