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.

jQuery's slideUp effect hides the element by sliding it up, while slideDown shows the element. I want to show my div using slideUp. can anyone guide me ? thanks

share|improve this question

4 Answers

$("div").click(function () {
      $(this).hide("slide", { direction: "down" }, 1000);
});

http://docs.jquery.com/UI/Effects/Slide

share|improve this answer
Upvoted for readability – rossipedia Mar 9 '11 at 8:05
I want to show the div and not hide it guys – Umair Mar 9 '11 at 8:07
Umair, I have not tried this, but you could try to change the "hide" to "show" and change the direction to which ever direction you want. – Jason Mar 9 '11 at 8:13
Should not be so hard to find out the opposite show() if you don't want to hide it. – Dr.Molle Mar 9 '11 at 8:13
1  
If you want it, do it. There was an answer before(has been deleted now) using animate, that should be the right way. But you have to do something more on your own than only tell us what you want to have. – Dr.Molle Mar 9 '11 at 10:42
show 5 more comments

I found a tricky way...
you can set div with css style bottom:0px, add call
$("#div).slideDown();
will show with the slideUp-to-show effect you want.

share|improve this answer
This works, but only as long as the #div in question can also be set to position: absolute; When the #div in question needs to be positioned relative, it does not. – Strixy Apr 25 at 21:26

Jquery toggle

This toggle effect is only for up and down. Jquery UI is for every other direction

share|improve this answer
how to use toggle for up and down ? – Umair Mar 9 '11 at 11:29

To get the opposite of slideUp and slideDown. Add these two functions to jQuery.

$.fn.riseUp = function()   { $(this).show("slide", { direction: "down" }, 1000); }
$.fn.riseDown = function() { $(this).hide("slide", { direction: "down" }, 1000); }
share|improve this answer
For this you need to use the jQueryUI library, link – Yokocapolo Dec 8 '12 at 19:47
This is effectively the same answer that @jason gave earlier only somewhat more obtuse due to namespacing. – Strixy Apr 25 at 21:41
It is essentially the same answer, though this in shortcut-form, that may be more readable to some. – Jamo Apr 27 at 6:25

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.