New list items are generated by JS. Each new list item comes in with a nice animation. Now I don't want to see an animation on the first list item.
So far I tried to add slice(1) to the code, but no luck:
$('li.show').slice(1).animate({left: '-=100'}, 300);
How can I make this work using the lastest version of JQuery?