Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

$target.remove() can remove the element,but now I want the process to be down with some feel animation,how to do it?

share|improve this question
1  
This is exactly what I was looking for. Great question and answers. – Hardwareguy Oct 27 '11 at 21:05

5 Answers

up vote 89 down vote accepted
$target.hide('slow');

or

$target.hide('slow', function(){ $target.remove(); });

to run the animation, then remove it from DOM

edit: not sure why I'm getting voted down for this...

share|improve this answer
This won't remove the element from the DOM. It only hides the element. – rahul Nov 27 '09 at 7:10
I need it to be exactly removed.I tried $target.hide('slow').remove() but not working。 – Mask Nov 27 '09 at 7:11
2  
In that case: $target.hide('slow', function(){ $target.remove(); }); – Greg Nov 27 '09 at 7:12
Yup,works now,ty! – Mask Nov 27 '09 at 7:16
1  
The .remove() method very specifically removes the node from the DOM. The .hide() method only changes the display attribute to make is not visible, but still in existence. – micahwittman Nov 27 '09 at 7:19
show 4 more comments
target.fadeOut(300, function(){ $(this).remove();});

or

$('#target_id').fadeOut(300, function(){ $(this).remove();});

Duplicate: http://stackoverflow.com/questions/553402/jquery-fadeout-remove

share|improve this answer
+1 for the answer to this question. – d-_-b Nov 19 '12 at 6:10

If you need to hide and then remove the element use the remove method inside the callback function of hide method.

This should work

$target.hide("slow", function(){ $(this).remove(); })
share|improve this answer
+1 for having the answer right as the comments above got it. Somehow I like the $(this) instead of repeating the $target too. – goodeye May 3 '12 at 1:19
My prefered one as well – Jimmy Kane Dec 27 '12 at 19:14

You need to use an animation before calling the remove method.

See: http://stackoverflow.com/questions/308019/jquery-slideup-remove-doesnt-seem-to-show-the-slideup-animation-before-remov

share|improve this answer

You mean like

$target.hide('slow')

?

share|improve this answer
Yes,but I also need to delete it after animation. – Mask Nov 27 '09 at 7:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.