I have an array: result[i]. I'd like to loop through each field in the array and append it to an element in my page.
$("tr:first").after(result[i]);
But I'd like this to happen with a delay.
Been trying to grock how queues work with each loops and a delay, but I just can't seem to work it out. I can get a delay, but only before they're all appended.
Thanks in advance.