eventRemove
removes an event handler from an HTML element
void eventRemove(id id);
| id | id | the id of an event handler |
Example
var eventId = webix.event("divId", "click", function(e){
do_something();
});
webix.eventRemove(eventId);
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.