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:
VARIANT_TRUE (true)
Register the event handler for the capturing phase.
VARIANT_FALSE (false)
Register the event handler for the bubbling phase.
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.
Note Some events, such as HTMLFrameSiteEvents::onfocus, do not bubble. However, you can capture all events. You cannot capture events by elements that are not parents of the target element.
If you register multiple identical event handlers on the same event target, the duplicate event handlers are discarded.