An animation when an item is added to the array is easy, you will just do the fade in or whatever on the element's creation.An animation when an item is removed from the array... well, you have to do the animation then remove the item from the array. But still not *that* hard.Here's an example: http://jsfiddle.net/R2yUC/
I searched for transitions and animation in the group before posting, but most of the posts on the topic seemed to pertain to animating partials and routes.
I have a situation where users can add and remove items from an array. Unfortunately, just changing the DOM is so abrupt that it's hard to tell sometimes what's going on. I would really like changes to be animated somehow; what the animation is isn't that important to me.
Here's a jsfiddle demonstrating the situation.
http://jsfiddle.net/2brhn/
Is there any way to make those transition animations happen?
--
Brian