I have just started to use jQuery from prototype and am working with the load function to execute some scripts once the page has been loaded:
$(window).load(
function()
{
Stuff happens
}
);
However, how do you add a list of functions and control the order in which they execute? It's difficult to put everything I want to load in the 'stuff happens' area, so i need to be able to add and remove stuff from an array and change the order. Then one page load, execute that list.
Any clues?