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.

When I am doing animation with jQuery (like $(".myClass").slideDown()) it adds some styles inline to my object:

# Before:
<div class='myItem'>...</div>
# Animation:
=> $(".myItem").slideDown();
# After:
<div class='myItem' style='display: block'>

Question is how to return my object to original state after animation.

I've got two approaches:

  • I can use cool wrap() function to wrap my object, animate it and unwrap() as callback for animation.
  • I can save my original state html = $(".myItem").html() and assign it back after animation.

Why I need it? Actually I was digging in one web site, that was using ancient (but quite cool) CSS dropdown menu. My goal is to add animation for dropdown (slideDown) with jQuery. Problem is that my animation breaks css styling and it stops working. Now I am using my first approach with wrap, but it don't work in IE.

share|improve this question

1 Answer

up vote 4 down vote accepted

Can you not just remove the style attribute once the animation has completed, i.e., within the callback?

$(".myItem").slideDown("slow", function() {
    $(this).removeAttr("style");
});
share|improve this answer
quite smart :). I'll try it – fl00r Mar 14 '11 at 20:43

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.