I want to know when all of the events for a mouse event have fired.
For example, if I have registered listeners on document and an element, then click the element, i could get multiple events firing (more if the resultant events are bubbling).
How would i know when all events resulting from that click have completed?
This site provides one way of doing this -- they cluster mouse events into a list by updating the list with new events on a time interval. I was hoping for an automated way without a timer.