I've got a bunch of blockquotes that I've managed to get to fade in one after another. At the moment, after the last one has faded in and out, the function ends. But I want it to loop and start from the beginning again. Here's my code so far that works:
$("div.quotes blockquote").each(function (index){
$(this).delay(4500*index).fadeIn(500).delay(4000).fadeOut(500);
});
How do I get it to loop?