Similar to: Using fadein and append
But the solutions there aren't working for me. I'm trying:
$('#thumbnails').append('<li><img src="/photos/t/'+data.filename+'"/></li>').hide().fadeIn(2000);
But then the whole list fades in at once, not as each item is added. It looks like hide()
and fadeIn()
are being applied to $('#thumbnails')
not the <li>
. How would I get them to apply to that instead? This doesn't work either:
$('#thumbnails').append('<li stle="display:none"><img src="/photos/t/'+data.filename+'"/></li>').filter(':last').fadeIn(2000);
Other suggestions?