This works but I'm not sure why. In function capIn(), in my mind the line $botcap.slideDown("slow") should slide the div down. It slides it up. If I try using .slideUp() nothing happens as if it is trying to slide it down. Can anyone explain this to me?

$(".slide").hover(capIn, capOut);

function capIn(){
    //slide top caption down
    var $topcap = $(this).children(".topcap");
    $topcap.slideDown("slow");

    //slide bottom caption up
    //!! Why does slideDown slide caption up here?
    var $botcap = $(this).children(".botcap");
    $botcap.slideDown("slow")
}

function capOut(){
    //slide top back up
    var $topcap = $(this).children(".topcap");
    $topcap.slideUp("slow");

    //slide bottom back down
    var $botcap = $(this).children(".botcap");
    $botcap.slideUp("slow");
}
link|improve this question

3  
can you post the markup or better if you can make a demo on jsfiddle.net – 3nigma Feb 10 at 16:32
Can you provide a fiddle - your description is hard to visualise. – Rory McCrossan Feb 10 at 16:32
Need more markup as to whats going on in HTML and CSS. Hard to tell just based on this javascript whats going wrong – Downpour046 Feb 10 at 16:38
fiddle isn't giving me a unique url. Saves as jsfiddle.net/#save. Are they still down for maintenance? – Jonathan Eckman Feb 10 at 16:43
feedback

2 Answers

up vote 5 down vote accepted

jQuery's slideDown and slideUp functions are actually misnomers. As the documentation for slideUp puts it:

Hide the matched elements with a sliding motion.

The hiding is achieved by modifying the height of the element; normally, this means that the lower edge of the element appears to slide up, hence the name. However, if the element is anchored at the bottom (e.g. by setting position: absolute and bottom: 0), the height modification will make the top edge appear to slide down.

link|improve this answer
Interesting. Thank you for explaining that. – Jonathan Eckman Feb 10 at 16:45
feedback

One possible fix would be to wrap $('.botcap') elements with a container and align the container to the bottom.

link|improve this answer
You'd have to be sure your container's height was set to the full visible height of .botcap. – Timothy Aaron Feb 10 at 16:50
feedback

Your Answer

 
or
required, but never shown

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