I'm having an issue with jQuery slideDown when the contents of the object I'm sliding down is floated.

What happens is that that the div slides down WAY past the height of the contents, and then 'snaps' to the proper height.

I think (merely a theory) that the div is sliding down based on the height it would be if the contents inside weren't floated. For instance, if I have 4 floated items, the div seems to expand twice as far than when I have 2 floated items within.

No amount of containing the floats with clearfix hacks seems to fix anything.

The solution I've used in the past (and one that is recommended) is to set the height of item via CSS BEFORE hiding it. That way, slidedown knows how far to go.

The catch is that I'm nesting panels that use slide down. I can't set the height of the parent before hand as it would be calculated based on the nested hidden panels being expanded already.

I could recursively call that function that sets up all my toggle panels...find the innermost nested ones, set the height, collapse the ones I want hidden by default, and then move my way up the hierarchy. But that'd be a performance hit having to traverse so much.

Anyone know of a way to fix this slideDown of floated content without fixing the height via CSS before hand without having to traverse the dom setting heights manually first?

UPDATE:

sample code is here:

http://jsbin.com/ajoka/10/

(click the page to see it sliding)

This is based on the exact styles I am using and in that particular combination, you'll see the issue. Note the DIV being set to slideDown has a pink background. It will slide down FURTHER than its contents and then quickly snap back into the proper place.

link|improve this question

66% accept rate
feedback

3 Answers

I can't reproduce the problem. Please provide some code. This works as expected:

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>Test</title>
  <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
  <script src="assets/js/jquery-1.4.1.min.js" type="text/javascript"></script>
  <script src="assets/js/application.js" type="text/javascript"></script>
</head>
<body>
  <div id="test">
    <div>test</div>
    <div>test</div>
    <div>test</div>
    <div>test</div>
  </div>
</body>
</html>

CSS

#test div { width: 200px; height: 200px; float: left; outline: 1px solid #000; }

JS

$(function(){
  $('#test').hide();
  $(window).click(function(){
    $('#test').slideDown();
  });
});
link|improve this answer
hmmm...you're right! There must be another variable I'm missing...I'll keep digging – DA. Jun 18 '10 at 17:49
@Fred...I tried all sorts of variations but couldn't replicate it from scratch. I finally copied the issue site elements verbatim and THEN the problem came back. So it's some odd combo of my particular CSS. I added a link to the sample in my original post. – DA. Jun 19 '10 at 2:01
feedback

solved:

remove margin-bottom:10px; from your

  .itemsWrapper {
    margin-bottom:10px;
    overflow:auto;
    width:100%;
    background: green;
  }

http://jsbin.com/ajoka/11

link|improve this answer
That does fix the demo! Alas, not our specific markup. Ugh. Too many factors! In my case, I discovered that removing 'positon: relative' from the floated items fixes the problem. The issue is that they HAVE to be positioned relative in certain cases (when their contents is being positioned absolutely). Back to the testing board... – DA. Jun 19 '10 at 3:25
@Da, Why don't you post your entire code, I will take a look at it. – Starx Jun 19 '10 at 9:17
feedback

I just came across the same issue, and while reading this post suddenly remembered I already had this issue years ago.

Here's a solution that, though not optimal, gets the job done for most situations.

Add padding-bottom: 1px; to your wrapper. In my case, the wrapper is the parent to the animated div.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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