if I have
$("a#foo").click();
$("a#bar").click();
dostuff();
and both have click handlers attached which do different things..is it guaranteed that bar's click handler will only execute after foo's completes? or are they dispatched asyncronously
similarly..will dostuff() only execute after foo and bar's click handlers complete?