Hello I have the following:
$('#container').prepend("<ul><li>Stuff</li></ul>').hide().slideDown();
I want the NEW UL to slide Down. but the above is sliding down the entire #container..
How can I prepend an item to the top, and then slide it down.. Kinda like how Twitter used to show you your new tweet.
Thank you.