vote up 2 vote down star
3

I have this line of JavaScript and the behavior I am seeing is that the selectedLi instantly disappears without "sliding up". This is not the behavior that I expected.

What should I be doing so that the selectedLi slides up before it is removed?

selectedLi.slideUp("normal").remove();
flag

3 Answers

vote up 14 vote down check

Might be able to fix it by putting the call to remove in a callback arg to slideUp?

e.g

selectedLi.slideUp("normal", function() { $(this).remove(); } );
link|flag
vote up 1 vote down
selectedLi.slideUp(200, this.remove);
link|flag
vote up -1 vote down

I have another question based around this...

I can't figure the syntax so #introOverlay is removed after the animation?

$(function() { $("a.shift").click(function() { $("#introOverlay").animate({ height: 0, }, 2000) }); });
link|flag
Please post another SO question instead of posting a question as an answer. – spoon16 Sep 16 at 18:03

Your Answer

Get an OpenID
or

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