tags:

views:

89

answers:

1

When I call slideup or slidedown on my div, it seems to be sliding very very fast. Do I need to slideup all the inner elements also?

my DOM:

<div id="outer">
    <div id="inner">
        <div id="inside">hi</div>
    </div>
</div>
+1  A: 

Did you try setting the speed?

http://jsbin.com/odiji/edit

Explore the example above where I set the speed to be 5000 which will slide the element over 5 seconds.

RedWolves