I have the following HTML code

<div class="text">bla bla bla bla</div>
<div class="button">Show</div>

And the CSS

.text{
  height:100px;
  overflow:hidden;
}

Assume .text div has way more text and what I do is hide the amount of text below 100px.

How can I slideDown() the div so I can view the text when I click the button?

Using $(".button").slideDown(); doesn't work because I need to remove the height and then slideDown() but this will not work either.

link|improve this question

63% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Try this it is very simple and easy without creating any clone.

$(function(){
    $(".button").click(function(){
        var $text = $(".text");
        var contentHeight = $text
                            .addClass('heightAuto').height();
        $text.removeClass('heightAuto').animate({ 
            height: (contentHeight == $text.height() ? 100 : contentHeight)
        }, 500);

    });
});

Added a new class

.heightAuto{
    height:auto;
}

Demo

link|improve this answer
Interesting; I thought the 'blip' that would occur when you set height: auto would be much more noticeable. Is this because the CSS doesn't get rendered until the function returns (i.e. quasi-threading)? – Kato Jan 27 at 16:17
It happens within fraction of micro seconds so. – ShankarSangoli Jan 27 at 16:19
I'm thinking it doesn't even happen. I've noticed before that I have to setTimeout() when I make css changes then try to utilize them right away. I suspect the CSS change doesn't get applied until the js method exits. – Kato Jan 27 at 19:26
No, it gets applied right away. You can see in my demo. – ShankarSangoli Jan 27 at 19:27
feedback

Clean but expensive option: Use animate directly instead of slideDown(). Determine the height you want to animate to by creating a clone and setting the height to auto.

$('.button').click(function() {
   var $div = $('div.text');
   $div.animate({height: determineActualHeight($div)});
});

// if you can determine the div's height without this, it would be faster
// what makes this expensive is inserting and removing an element from the dom
// of course, you aren't doing this a thousand times a second, so it's probably no biggie
function determineActualHeight($div) {
   var $clone = $div.clone().hide().css('height', 'auto').appendTo($div.parent()),
       height = $clone.height();
   $clone.remove();
   return height;
}

A little uglier but less expensive option: just set the height to auto, hide the element, then use slideDown() to render it:

$('.button').click(function() {
   $('div.text').hide().css('height', 'auto').slideDown();
}
link|improve this answer
1  
beat me to it haha i made a fiddle for the second option :O (yours was a bit cleaner however) jsfiddle.net/GordnFreeman/thJwU/9 :) – Gordnfreeman Jan 27 at 16:00
And that truly is the conundrum of SO is it not? Answer it thoroughly or answer it fast? Thus, I always try to upvote ALL the useful answers, and not just the first one, particularly if each contains some unique helpful detail. :) If you did the work, you should post your answer; I'm sure it will help someone. – Kato Jan 27 at 16:09
well i dont want to hide it... simply slideDown it or animate it – fxuser Jan 27 at 17:57
well then you want the first approach, or +ShankarSangoli's. FYI - the second option doesn't hide it, just simply makes it expand from zero instead of the current height. – Kato Jan 27 at 19:28
feedback

I just totally misread your question.

Unfortunately, you can't really set to auto height. But you can animate to a set height, using .animate();

.animate({height:'200px'};

slideUp()' and .slideDown(); set the divs to display: none and display: block So you're right, that wouldn't work for what you're trying to do.

EDIT

I just saw Kato's post. That's probably the best option for you.

link|improve this answer
You're on the right track, your first answer was also not bad. You just need the height: auto in the css to get things rolling :) – Kato Jan 27 at 16:11
Ah, I didn't realize the height: auto worked with .slideDown(); - doesn't it default to display: none? Also, I wasn't aware you could do .animate(); to height: auto Ha, I'm certainly no jQuery master, so I've still got a ways to go. – Jeremy Miller Jan 27 at 16:15
feedback

Your Answer

 
or
required, but never shown

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