Tagged Questions

5
votes
4answers
66 views

Issue with jQuery's slideDown()

Check this code: http://jsfiddle.net/ZXN4S/1/ HTML: <div class="input"> <input type="text" size="50" id="test_input"> <input type="submit" value="send" id="test_submit"> ...
5
votes
3answers
199 views

How can I achieve a slide down effect like jQuery's slideDown, but only using CSS?

There is a problem with CSS3 animations. They do not support the "auto" height property (and width, margins, etc.). What is the best way to create a CSS3 slide down animation without knowing the ...
4
votes
1answer
821 views

Fixing vertical jump at end of jQuery slideDown animation

I am new to Jquery but have written a simple vertical accordion. It seems to to the job I require, but at the end of the slide down there is a visible jerk. If anyone could look at it and suggest a ...
3
votes
2answers
77 views

Question about jquery slideDown

I have a div with hight 300px I want to use slideDown or any of jquery methods to slide down a part of the div not all the 300px may be just 50px
3
votes
1answer
300 views

jQuery slideUp div if already slided down?

I have a simple question about jquery slideDown, SlideUp. I'm using slideDown to slide a div on click, like $("#box").slideDown("slow"); How can I do it so that if the #box is already slided down, ...
3
votes
4answers
2k views

Cancel all queued jQuery slideUp and slideDown animations

I have an interface that makes heavy use of the jQuery slideUp and slideDown effect to expand items in a tri-state kind of way. onmouseover: function() { this.find('.details', this).slideDown(); }, ...
3
votes
2answers
9k views

jQuery slideDown with easing

How can use the slideDown() function with easing? Maybe extend it somehow? I'm looking for something like this: jQuery.fn.slideDown = function(speed, easing, callback) { return ... }; So i can ...
3
votes
2answers
4k views

making a link toggle between SlideDown and SlideUp (scriptaculous)

The scriptaculous wiki has a demo (http://github.com/madrobby/scriptaculous/wikis/effect-slidedown) that shows the SlideDown effect in use. However I need to have the same link to slide down if a ...
2
votes
2answers
47 views

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 ...
2
votes
2answers
80 views

Hide an element without masking item over top

I've created an effect whereby an HTML element is initially hidden behind another HTML element, and the CSS 'top' value of the hidden element is animated to expose it from beneath the masking element ...
2
votes
4answers
72 views

JQuery function does not work after changing ID

I have a simple file that has a Jquery script it in that looks like this: <script type="text\javascript"> $('.grey_title').click(function(){ ...
2
votes
2answers
630 views

JavaScript Sliding Billboard (No Flash)

I need to create a sliding billboard ad (just like the one on this website http://www.mlive.com/slidingbillboard/). I would prefer to use jQuery over Flash, for reasons I'm sure most understand. I've ...
2
votes
3answers
659 views

Problem with jerky animation in jQuery

Ive done this a number of times with no problem but for some reason it is a problem on Here. The slide down will begin to work (1/3) normally and than all of a suddenly jerk and finish the animation. ...
2
votes
1answer
192 views

slideDown() makes everything in wrapper shift

I am currently creating a simple menu where there are several names of services and a user can click on one and jQuery will show it's corresponding paragraph describing it below it. My jQuery code is ...
1
vote
3answers
212 views

Slide down a div on body load

How can I have a div hide as the page is loading and then slide down once the page loads? I don't want to use CSS display:none;
1
vote
4answers
35 views

Having issue with jquery animation effects

Live Example Here Press any of buttons. Can you see shaky slideDown effect? In fact it must be smooth and slow slide down. If you've pressed for 1 time any of buttons try to press another one. The ...
1
vote
5answers
165 views

How to make div slidedown

Sorry I'm really new to JQUery and would like to know how do I make an Div Slide Down? JQuery is confusing to me and really just need help
1
vote
2answers
77 views

How to use delay() with each()?

$("#home #oneTool").prepend($(".userInfo.module")); var topVal = $(".userInfo.module").height(); $(".userInfo.module").hide(); $(".userInfo.module").slideDown(3000); $("#home #oneTool ...
1
vote
2answers
717 views

jQuery slideDown slideUP - hide button

I am trying to write a very simple slide up and slide function that hides the buttons after they are pressed, but I have little javascript skill and am surely doing something silly. What I is not ...
1
vote
1answer
621 views

IE7 Margin Bug on jquery slideUp / slideDown

Clicking more info / less info buttons, which slideUp / slideDown content, create a spacing glitch in IE7. Replacing that with show/hide seems to fix it. Does anyone know how to make it work with ...
1
vote
3answers
1k views

Alternative to jQuery's slideDown() and slideUp() not affecting the display property

I've been trying to use the slideDown() effect for a website I'm working on, but I'm having difficulty getting the effect I want. Here's a sample showing what I want to accomplish. <div> ...
1
vote
2answers
2k views

jquery slideDown rather than slideAndPush

I have a div where I click on a link to slideDown. As expected it does what it promises however, I prefer it to slide open without pushing the other elements down as well. so like a layer on top of ...
0
votes
1answer
59 views

jquery animate down (100% element height)

What I want to do can be accomplished just by using: slideDown("fast"); However, I don't like how it reveals the element, I would like for it to be 100% of the elements original height, and roll ...
0
votes
2answers
62 views

Ignore Function?

So I've got an div that slides down when you scroll near the bottom of the page. In that div, I have an "X" anchor that slides it up again (this is in jQuery). But if I scroll, the div slides down ...
0
votes
1answer
54 views

jQuery slideDown and slideUp Issue

I'm trying to make a menu using tags, and you can see it here, along with source code: http://jsfiddle.net/6wqjq/10/ But the problem is like this...try to click Menu Item One, then click Sub Menu ...
0
votes
2answers
92 views

jQuery .slideDown executes twice instead of once

I'm new to jquery and bumped into a problem i can't fix I want that on pageload my content is sliding down so i use the next code: $(document).ready(function () { $("#content").hide(); ...
0
votes
2answers
152 views

Strange issue with jQuery's slideUp/slideDown

I use the following code on a website: // show tracks $('.content-playlist .track p').live('click', function() { var player_handle = $(this); $('.content-playlist .track ...
0
votes
0answers
96 views

Campaign Monitor ajax .slideDown not working within cycle plugin

I have a page setup with a cycle plugin, and the last content div contains a Campaign Monitor newsletter sign up field. I am using their Ajax submit setup and the information is submitting (or if the ...
0
votes
1answer
83 views

margin changes after jQuery .slidDown() animation

I created this site at work, http://eco-spirit.ca/, (the IE version isn't done yet, so it's best viewed in Chrome/Safari/Firefox), and when you click on the icons at the top I use the .slideDown() ...
0
votes
3answers
67 views

Jquery: Need help with the logic. Different divs, each w/ their own trigger. Only one can be open at a time, close all others

http://jsfiddle.net/nicktheandroid/ZSvHK/ I need help figuring out how to get this right, problems listed below. If you could suggest any improvements, that'd be great. I have multiple divs, each ...
0
votes
1answer
186 views

Jquery slidedown not sliding; instead, replacing

I am trying to write a little script that - one by one - grabs some pre-made divs out of an array of divs, puts them on the page, and then slides each of them down. The goal is to end up with ...
0
votes
1answer
129 views

hide + load + slideDown(), can't see the effect

Intro, I'm trying to write a new function to load content using the slideDown() effect from Jquery This is the function, the content gets loaded properly, but i just don't see the Slide effect, i ...
0
votes
1answer
155 views

how can i slideDown A Hidden element from 0 opacity to 1 with jquery

i have a coke like below that using jquery prototype Library: new Effect.SlideDown(this.imageDataContainer, { sync: true, duration: this.resizeDuration, from: 0.0, to: 1.0 }), new ...
0
votes
1answer
272 views

Jquery SlideDown not working in IE7

I made a site but there something wrong in IE7 I have a navigation and when I click on a li-element all the li's slideup and the matching div slidesdown. This works in all the browsers except IE7 ...
0
votes
2answers
134 views

How to animate the transition in jquery

I am using jquery to expand increase the rows of the textarea from 1 to 4 on focus. Lets just say it is not very pleasing to the eye. I want it to slowly ease from 1 rows to 4 rows. I currently use ...
0
votes
1answer
99 views

jQuery: No cueing on animation - not working on slideDown or Fades

I'm working on a project with several animations; fades, slides, and regular pixelanimation. My client hates that jQuery "remembers" how many times you have activated a animation, and therefore ...
0
votes
1answer
391 views

<button> text disappears when using jQuery slideUp()/slideDown()

I have 3 sections on a form which slideDown() when a checkbox is checked and slideUp() when the checkbox is unchecked. In one part of the form i'm using a simple button to run a function. If I ...
0
votes
2answers
59 views

Temporarily adjust height of element on hovering

I have a <h3> tag with limited height (100 px for example, position: absolute) and the text overflows it. What I would like to do is slide it down over to the height that is needed when the ...
0
votes
3answers
574 views

Show/Hide div on click using jQuery

I've got 4 divs and on click of the navigation I want to show one of them and hide the others. I have it working but I feel its not as smooth as I know it could be, its definitely my code that needs ...
-1
votes
2answers
120 views

slide up and slide down

I have one list with groups name. <ul id="groups" > <li id="group1" ></li> <li id="group2" ></li> <li id="group3"></li> </ul> and sliding ...