Removes the event listener for the specified event type. This is a DOM Level 2 method.
ADOMHTMLElement
(W3C DOM: EventTarget
)
void removeEventListener( DOMString type, ADOMNativeScript cScript, any arg, boolean useCapture );
htmlelem.removeEventListener(type, cScript, arg, useCapture)
void removeEventListener( ADOMHTMLElement* htmlelem, ADOMDOMString type, ADOMNativeScript* cScript, void* arg, ADOMBoolean useCapture );
htmlelem The ADOMHTMLElement
object.
type [in] The type of event; may be standard types, such as onClick
, or user-defined types.
cScript [in] Pointer to the listener script function.
arg [in] An argument to pass to the listener script.
useCapture [in] Not currently used; reserved for future implementation, so you must pass a boolean value here.
None
Send feedback about this page using email. | Copyright © 2008, iAnywhere Solutions, Inc. |