I am trying to slideDown() a hidden div but it only show() it without the slideDown() effect

http://jsfiddle.net/BQYQ5/

link|improve this question

63% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Min-height breaks animation. Read this http://bugs.jquery.com/ticket/4623

And solution http://docs.jquery.com/Tutorials:Getting_Around_The_Minimum_Height_Glitch

link|improve this answer
i have added height just for testing purposes.. now i see when the div gets data it will be fine... thanks. – fxuser Feb 4 at 7:33
feedback

You can try this:

$('a').click(function() {
   $("#dropdown").slideDown("slow");
});

$("#dropdown").hide();

<a href="#">[open]</a>
<div id="dropdown">
    data go here
</div>
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.