Questions tagged [slidedown]

An effect of showing element with a sliding motion.

Usually refers to jQuery/JavaScript animated revealing of element with a sliding motion.

slideDown() in jQuery docs.

Some examples are:

 $('#element').slideDown('slow', function() {
   // Animation complete.
 });
609 questions
5
votes
1 answer

jQuery slideDown() - absolute positioned div sliding down from top of page, need to slide from specific area on page - how?

I'm creating a website where the homepage has an image of a house. The house has a few windows and a door. When a user clicks on a particular window, a
pops up with some text. The door has the same functionality, only I would like for the…
katura
  • 2,177
  • 14
  • 39
  • 48
5
votes
3 answers

JQuery .slideDown() is sliding up

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…
Jonathan Eckman
  • 2,071
  • 3
  • 23
  • 49
5
votes
4 answers

Issue with jQuery's slideDown()

Check this code: http://jsfiddle.net/ZXN4S/1/ HTML:
5
votes
3 answers

Jquery: How to combine addCLass() after() and slideDown()

I'm trying to add a Class to an existing div container and insert a new div (on success) below the existing one.