Last active
December 11, 2015 10:38
-
-
Save nowherenearithaca/4587679 to your computer and use it in GitHub Desktop.
Snippet for blog; this snippet is from Cletus' answer to this stack overflow post: http://stackoverflow.com/questions/3034752/jquery-appending-an-li-to-a-ul-and-then-animating-that-li
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("<li>This is my item</li>") | |
.hide() | |
.prependTo("#news-feed") | |
.slideDown(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment