I am attempting to show and hide a series of divs using toggle, slideUp and slideDown. I am able to get the div to slideDown but I can't get it to slideUp. I've used this script without incident before so I'm really confused as to why this isn't working. I have included my script and the div I'm attempting to show and hide.

Quick Note: When I put a regular old p tag in the "hidden vehicles" div, it worked fine. It was showing and hiding like it was supposed to. However, when I put my table back into that div, it didn't work.

<script type="text/javascript">
$(document).ready(function() {
    $(".ShowVehicles").toggle(function() {
        $(".HiddenVehicles").slideDown(2000);
        $(this).text("Hide All");
    }, function () {
        $(".HiddenVehicles").slideUp(2000);
        $(this).text("Show All");                
    });
});

<div class="HiddenVehicles" style="display:none; width:730px;">
    (there will be a giant table in here)
    </div>
link|improve this question
1  
I just tested your code locally and it worked fine. Most likely your table is floated. You could try adding position:relative to your div and to the table. Any possibility you could link to a live test page somewhere? It would be easier to debug. – Doug Neiner Nov 17 '09 at 18:29
2  
Correction, Those were two unrelated suggestions. If your table isn't floated, try the position: relative. If it is, turn it off with float:none on the table css. – Doug Neiner Nov 17 '09 at 18:30
1  
Thank you so much! This worked perfectly. My table was most likely inheriting a float class from somewhere! Thanks again! – RachelGatlin Nov 17 '09 at 18:34
@dcneiner - You might want to go ahead and make an offical answer so that both of you can gain some reputation points from this. – Chris Nov 17 '09 at 20:09
Thanks @Chris, on your advice I did just that. @RachelGatlin I am glad it worked for you! I put the advice into an answer if you want to mark it as solved. – Doug Neiner Nov 17 '09 at 22:04
feedback

2 Answers

up vote 3 down vote accepted

I posted this advice as a comment, and it helped to fix the problem so I am posting it again here:

When slideUp/slideDown animations only work one way, it is often a positioning bug. Either the element you are animating needs to be set to position:relative or the children of the element have a float applied to them and are not giving the parent element true height.

I would try adding float:none to the table. If that doesn't work try adding position:relative to the div#HiddenVehicles.

link|improve this answer
Thanks for catching that @Jason! – Doug Neiner Nov 17 '09 at 22:07
feedback

For additional clarification of other folks who come across this, it sounds like a browser issue. Is the browser you're testing with Internet Explorer 6 or 7?

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.