Is it possible to dictate the order in which jQuery events should be fired?
i.e.
<div class="C1 C2 C3"></div>
$('.C1').click(SomeClickEvent);
$('.C2').click(FirstEvent);
$('.C3').click(LastEvent);
Where FirstEvent should always be fired first and LastEvent should always be fired last. SomeEvent doesn't care when it is called.
The main reason being that FirstEvent may want to prevent other events from firing by returning false
Assume that the order in which the events are bound can't be changed. Also assume that the events are bound to the same DOMElement (or Elements) though not necessarily by the same selector (as above)
Finally assume that the events know nothing of each other, are in entirely different (and possibly unrelated) sections of code.