Say I have some code like this:
$("#start").click(function1);
$("#start").click(function2);
$("#start").click(function3);
// I need function1, function2 and function3 be all executed when
// the #start button on this page
// is clicked, and in the order that I bind them.
When I click the #start
button, will the order be ALWAYS function1, function2, function3? Is there any risk that the order could be random?
Thanks,