Is it possible to loop through and execute an array of asynchronous Ajax calls in order without using promises?
Below is my current approach, although it does not wait for the last post to complete:
for (i = 0; i < post.length; i++)
{
post[i]();
};