Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to use .slideUp, but the object only slideUp by (For instance) by 20px instead of disappearing off screen?

HTML:

<div class="toolbar">
  <p>Hide</p>
   <ul>
    <li>Tab 1</li>
    <li>Tab 2</li>
   </ul>
</div>

JQUERY:

$(".toolbar p").click(function() {
    $(".toolbar").slideUp(); 
});
share|improve this question

1 Answer

up vote 3 down vote accepted

Use animate instead.

$('#myDiv').animate(
    {
        top: "-=20px"
    }, 300);

Slides your div up 20 pixels in 300 ms.

share|improve this answer
Does the div need to be position:absolute for this to work? – CLiown Mar 26 '10 at 13:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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