Skip to content

Instantly share code, notes, and snippets.

@nowherenearithaca
Last active December 11, 2015 10:38
Show Gist options
  • Save nowherenearithaca/4587679 to your computer and use it in GitHub Desktop.
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
$("<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