i have this element to which various change events are applied how can i trigger my own function after all change events have occurred in mootools
a sample scenario is a drop down list
$('ddl').addEvent('change', function () { // some ajax call going on here and which i can't affect // as the page is generated that way });
i now want to call my function right after the change event is done but adding another change event will not do as i believe the events are executed async