removes an event handler from an HTML element
id | string | the id of an event handler |
var eventId = scheduler.event("divId", "click", function(e){
do_something();
});
scheduler.eventRemove(eventId);
All event listeners attached using event will be detached automatically when the destructor is called.
added in version 4.4
Back to top