* attaches an event handler to an HTML element * @param node the HTML node or its id * @param event the name of an HTML event (without the 'on' prefix) * @param handler the event handler * @param master optional, an object that the this keyword refers to
(node: HTMLElement|string, event: string, handler: SchedulerCallback, master?: any)
| 1818 | * @param master optional, an object that the <i>this</i> keyword refers to |
| 1819 | */ |
| 1820 | event(node: HTMLElement|string, event: string, handler: SchedulerCallback, master?: any): string; |
| 1821 | |
| 1822 | /** |
| 1823 | * removes an event handler from an HTML element |