detaches a handler from an event (which was attached before by the attachEvent method)
id | string | the event id (the result of the attachEvent operation) |
var myEvent = $$("fmanager").attachEvent("onItemSelect", function(){
// ...event handler code
});
// ...
$$("fmanager").detachEvent(myEvent);