If an item is being deleted then I would like to fade it out and slide the other elements up to fill the empty space. Now, when I use fadeOut() the item doesn\'
fadeOut()
Try $('.row').animate({ height: 'toggle', opacity: 'toggle' }, 'slow').slideUp();
$('.row').animate({ height: 'toggle', opacity: 'toggle' }, 'slow').slideUp();
demo Here