If I attach multiple event handlers to a single event on a single DOM element, are the event handlers guaranteed to be called in the order they were added? Or should I not rely on this behavior?
1 Answer
This has been changed with DOM3! While the DOM level 2 events specification did state
When the event reaches the target, any event listeners registered on the
EventTargetare triggered. Although allEventListenerson theEventTargetare guaranteed to be triggered by any event which is received by thatEventTarget, no specification is made as to the order in which they will receive the event with regards to the otherEventListenerson theEventTarget.
The current DOM level 3 events specification does now state
The implementation MUST determine the current target's candidate event listeners. This MUST be the list of all event listeners that have been registered on the current target in their order of registration.
HTML5defines the ordering of listeners registered through event handler attributes. […]Finally, the implementation MUST process all candidate event handlers in order […]
However, I can't find a reference to this behaviour in the DOM 4 draft any more.