addEventListener method
Registers an event handler for the specified event type.
![]() ![]() |
Syntax
HRESULT retVal = object.addEventListener(type, listener, useCapture);
Parameters
- type [in]
-
Type: BSTR
The type of event IDOMEvent::type to register.
- listener [in]
-
Type: IDispatch
The event handler function to associate with the event. Be aware that the event handler function itself requires two parameters - the first is the event target (that is, the object on which the event handler function is being invoked) and the second is the IDOMEvent object. - useCapture [in]
-
Type: VARIANT_BOOL
A VARIANT_BOOL value that specifies the event phase to add the event handler for:
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
Remarks
Events are handled in two phases: capturing and bubbling. During the capturing phase, events are dispatched to parent objects before they are dispatched to event targets that are lower in the object hierarchy. During the bubbling phase, events are dispatched to target elements first and then to parent elements. You can register event handlers for either event phase. For more information, see IDOMEvent::eventPhase.
If you register multiple identical event handlers on the same event target, the duplicate event handlers are discarded.
See also

