nsgenbind
Loading...
Searching...
No Matches
eventtarget.idl
Go to the documentation of this file.
1interface EventTarget {
2 void addEventListener(DOMString type, EventListener? callback, optional boolean capture = false);
3 void removeEventListener(DOMString type, EventListener? callback, optional boolean capture = false);
4 boolean dispatchEvent(Event event);
5};
void addEventListener(DOMString type, EventListener? callback, optional boolean capture=false)
void removeEventListener(DOMString type, EventListener? callback, optional boolean capture=false)
boolean dispatchEvent(Event event)
Definition dom.idl:8