[jQuery] event order
[jQuery] event order
Hello,
do events execute in the same order in which they are bound to the
element? Is that guaranteed?
Sample:
$('#someid').bind('click',opts,handler1);
$('#someid').bind('click',opts,handler2);
Does handler1 always executes first on each platform?
Kind regards
Andres