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
0
votes
1 answer

open jquery accordion with external link

I use the slideUp and slideDown function to generate an jQuery accordion. But how do I open the accordion with an external link, a link like this: http://www.example.com/page.html#index-number, where index-number match the number of the header in…
stig
  • 445
  • 1
  • 4
  • 9
0
votes
2 answers

jQuery slideDown/slideUp issue

I can't get the jQuery slideDown effect to work. I'm trying to get a panel to show by sliding down. Instead it just shows like the show() method but in Firefox it doesn't even show. jQuery: $("#linkHBE").click(function(){ if…
user1113534
0
votes
2 answers

jQuery slideUp/Down and fadeOut/In stops halfway

Here's the fiddle: http://jsfiddle.net/4mmk2/ Rapidly clicking the button will cause the animation to pause halfway. I suspect it's the stop() function's problem but I can't find a way to fix it. By the way, I use stop to prevent jQuery from putting…
chenglou
  • 3,640
  • 2
  • 25
  • 33
0
votes
4 answers

slideup,change content,then slide down with jQuery

I develop following code to slide up register panel, then change its content and then slide down logged in panel. function ValidLogin(data) { var content = null;; content = '
Moein Hosseini
  • 4,309
  • 15
  • 68
  • 106
0
votes
1 answer

Jquery slideDown() slideUp() problems

I have some jQuery slideDown problems. The first time I click on my slideDown it doesn't animate, it just goes from hidden to visible. But every subsequent click will animate. This is the code I'm using: $('#open').click(function() { …
Designon
  • 183
  • 1
  • 1
  • 8
0
votes
2 answers

jquery: slidedown and slideup on horizontal navigation bar menu

I'm trying to create a simple show submenu with simple slideup or slidedown animation on hover using jquery. It works fine when i have #menu1 and #menu2. But there is repetition in code. How can I get sub1 and sub2 to slide up and down without…
vaanipala
  • 1,261
  • 7
  • 36
  • 63
0
votes
1 answer

the event slideDown was not work correctly

i have problem in slideDown mehod. the event slideDown was not work correctly... when i click the button to run slideDown mehod this half opens and fast close:( this page is for password recovery and use PasswordRecovery
0
votes
2 answers

Hover function on nav item not working

I have the following hover script that is supposed to handle the sliding down and up of sub menus in my navigation bar: $j('body').ready(function() { $j('.menu-item').hover(function() { $j(this).find('.sub-menu').slideDown("slow"); …
Nick
  • 4,304
  • 15
  • 69
  • 108
0
votes
1 answer

If elem SlideDown .. then slideUp jquery

i have this jquery code $(document).ready(function(){ $(".C_bmiShowTableWord").click(function () { $(".C_bmiShowTable").slideDown(); }); }); if i click the C_bmiShowTableWord it will slide down C_bmiShowTable i want to make it if i click…
Mahmoud
  • 197
  • 1
  • 5
  • 16
0
votes
1 answer

change dhtmlgoodies slidedown to slideup

I'm looking to change the following script from an initial slidedown action to an initial slide*up* action. I can't use Jquery, only regular JS. At present when the content enters, it slides down. I would like it to slide up instead. Thanks for any…
0
votes
3 answers

How to apply jQuery slide down on a button when user hovers over a div element?

I have a view in which I there is a repeater control wrapped with a div. I would like to slide down a button when a user hovers over this div. How would I acheive this using jQuery slide down?? Thanks