views:

74

answers:

1

I know this is a simple question, but I haven't had the chance to test it in any browser other than Firefox.

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?

+3  A: 

Please note that the W3C model does not state which event handler is fired first...

From QuirksMode's Advanced event registration models

Jason Hall
I knew QuirksMode had something about this, but couldn't find it. Thanks!
musicfreak