vote up 1 vote down star

I'm trying to get an element to animate to its "natural" height - i.e. the height it would be if it had height: auto;.

I've come up with this:

var currentHeight = $this.height();
$this.css('height', 'auto');
var height = $this.height();
$this.css('height', currentHeight + 'px');

$this.animate({'height': height});

Is there a better way to do this? It feels like a bit of a hack.

Edit: Here's a complete script to play with for anyone that wants to test.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html lang="en"> 
    <head>
    	<title>jQuery</title>
    	<style type="text/css">
    		p { overflow: hidden; background-color: red; border: 1px solid black; }
    		.closed { height: 1px; }
    	</style>
    	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
    	<script type="text/javascript">
    	$().ready(function()
    	{
    		$('div').click(function()
    		{
    			$('p').each(function()
    			{
    				var $this = $(this);

    				if ($this.hasClass('closed'))
    				{
    					var currentHeight = $this.height();
    					$this.css('height', 'auto');
    					var height = $this.height();
    					$this.css('height', currentHeight + 'px');

    					$this.animate({'height': height});
    				}
    				else
    				{
    					$this.animate({'height': 1});
    				}

    				$this.toggleClass('closed');
    			});
    		});
    	});
    	</script>
    </head>

    <body>

    	<div>Click Me</div>
    	<p>Hello - I started open</p>
    	<p class="closed">Hello - I started closed</p>

    </body>
</html>
flag

80% accept rate
dont forget to var the $this variable Greg – redsquare Sep 2 at 20:04

2 Answers

vote up 1 vote down check

I could suggest an equally-hackish solution...Clone the element, position it out of view, and get its height...then delete it and animate your original.

That aside, you could also use $.slideUp() and $.slideDown():

$this.hasClass('closed') ? $(this).slideDown() : $(this).slideUp() ;

If you need to keep a 1px line, you can apply that with a parent element:

<div style='border-top:1px solid #333333'>
  <div class='toggleMe'>Hello World</div>
</div>

And apply the slidingUp/Down on the .toggleMe div.

link|flag
Sounds like it would work but I'm not sure it would be an improvement :) What I have works but I'm new to jQuery so I'm thinking there must be a non-hacky way – Greg Sep 2 at 19:49
1  
Any reason you decided not to go with $.slideUp() and $.slideDown()? – Jonathan Sampson Sep 2 at 19:53
I need it to stop at 1px heigh and I don't think that's possible with those functions (could be wrong though) – Greg Sep 2 at 19:56
Also it needs to be able to start in a closed or open state, before jQuery starts running, if that matters – Greg Sep 2 at 19:57
Can the 1px height be simulated by an element around the toggled-element? <div style="border-top:1px"><div class="toggle"></div></div>? – Jonathan Sampson Sep 2 at 19:57
show 3 more comments
vote up 0 vote down
$('div').click(function() { 
    if($('p').is(':hidden')) {
       $('p').slideUp();
    } else {
       $('p').slideDown(function() { $('p').css('height','1px'); });
    }
}

That should set the height of the p tags to be 1px once they've finished sliding.

link|flag
That would set the height of every p-tag to 1px. – Jonathan Sampson Sep 2 at 20:07
$(this).css('height','1px'); should be fine then. – Steerpike Sep 2 at 20:10
You're applying it on the callback of the slideDown() method, which means as soon as it's visible, it's going to be hidden again. Did you mean to set it for the slideup instead? – Jonathan Sampson Sep 2 at 20:16
Hmm, I think I got my reveal/hide functions mixed up, yeah. Either way getting show/hide functionality to work should be a lot simpler than checking for heights and such. – Steerpike Sep 2 at 20:24

Your Answer

Get an OpenID
or

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