>Sounds like an odd way to do it, just do > > $('#div').remove(); > > works with any DOM selection and it's chainable > > $('span').fadeOut().remove();
You'd really need to do: $('span').fadeOut(function (){ $(this).remove() }); To make sure you don't remove the element until after the animation has finished. -Dan