I have a div called "live", it's a list of prepended items with Jquery :
<ul id="live">
</ul>
and items from an array :
$.each([ 'item1', 'item2', 'item3','item4','item5' ], function( index, value ) {
$("#live").prepend('<li>' + this + '</li>').delay( 1000 ).fadeIn(1000);
});
But items are printed all together... how can I make this works ? :) (I tried setInterval but it did'nt work and delay does'nt seem to work too...)
Any ideas ??? :D