Tagged Questions

49
votes
8answers
34k views

jQuery - How to Use slideDown (or show) function on a table row?

I'm trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes up the layout. Any ideas ...
5
votes
4answers
57 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
178 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
2answers
45 views

Jquery: Click slideUp Issue

I have a JQuery navigation which on clicking a parent <li> slides down using JQuery. On a second click it will slide the navigation up. The problem I have is that my clients wants it also to ...
4
votes
4answers
489 views

SlideUp a div if any other div is slided down with jQuery

I have made a function to slidedown different div's by clicking different links. Following is basic code. However, there's a little problem that, for example, if i click on first link, it slides down ...
4
votes
1answer
703 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 ...
4
votes
3answers
1k views

jQuery slideDown in IE9 - content disappears after animation finishes

I've had this problem twice on two different sites. It works in all browsers other than IE9. I have a div being opened and closed using jquery slideup and slideDown (the same problem happens with ...
4
votes
1answer
3k views

JQUERY Prepending an LI to an UL with Animation

I have a UL and I'm working to dynamically add a new LI to the top of the UL with some animation. I have the following so far which works ok: $("#container").prepend('<li ...
4
votes
2answers
488 views

div will slideDown but it won't slideUp

I am attempting to show and hide a series of divs using toggle, slideUp and slideDown. I am able to get the div to slideDown but I can't get it to slideUp. I've used this script without incident ...
3
votes
5answers
40 views

Multiple object selection with jQuery

I have a pretty basic jQuery question and forgive me if it has already been answered. Basically I attempt to have a link slide down a div. This is fairly simple however I require multiple links ...
3
votes
2answers
37 views

jquery to only allow one rollover at a time

I created a .slideDown & .slideUp effect on a div based on mouseover and mouseleave. The problem is that when I rollover multiple divs to fast then rolloff it seems to keep a memory of how many ...
3
votes
3answers
162 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;
3
votes
1answer
151 views

jQuery .slideUp problem

The .slideDown is working fine. When the link is clicked a second time, the .slideDown animation occurs again instead of the .slideUp. Please give me a hand. Thanks. $(document).ready(function() { ...
3
votes
2answers
75 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
491 views

jQuery slideDown Snap Back Issue

I have the same problem im reading about all over the web, although I cant find the solution. Simply put, when using the slideDown() method on my DIV elements, I get that ugly snap back effect where ...
3
votes
1answer
285 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
2answers
2k views

Append and Slide together jQuery

I have this append method which I made to add more input boxes until there is 10 of them which will disable into making more. i = 0; $('#add-link').click(function() { if(i < 9) { ...
3
votes
3answers
4k views

How to jQuery slidedown once page has already been loaded

I am having a timing issue when attempting to slide down my more info div. My desired functionality is that the div slidesdown from the top once the page has already been rendered. My problem is if ...
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 ...
2
votes
2answers
44 views

jquery slidedown on page load

How can slide down a div with jquery on page load where css is set to display:none? I see a lot of solutions but none can slide div if css is set display:none. The best way is to hide it on load and ...
2
votes
2answers
73 views

jQuery slideDown and slideUp toggle issues

So basically I'm just starting out with jQuery and JS and I have hit a problem. I have a small menu that when the user clicks one of the links, the content slides down. If there is already a box ...
2
votes
3answers
82 views

Slide down a set of hidden <li> s one at a time

I would like to slide down some li's one at a time on clicking a button . I mocked up a little fiddle with what I currently have http://jsfiddle.net/S5T7N/ . <div id="dropdown"> ...
2
votes
2answers
77 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
69 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
1answer
249 views

jQuery - show/hide the element inside of another element and clicking outside of that element

HTML: <div class="portlet"> <h3 class="">Blogs</h3> <div class="portlet-content"> <div class="teaser"> <div class="image-with-caption"> ...
2
votes
2answers
551 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
171 views

Hidden fields in contact form

Is it possible to use jQuery to display hidden fields based on different selections from a dropdown menu? I'm having trouble writing the code for more than one hidden field. Basically, I need to ...
2
votes
3answers
587 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
491 views

How do I automatically scroll a page up if .slideDown goes of the bottom of the browser?

I have a table that reveals additional information for each row via a jQuery slideDown when the row is mouseover'd. When the mouse is removed the information is removed with a slideUp. This works ...
2
votes
3answers
119 views

showing hidden div with jquery

I want to display a div content with jquery if a button is pressed. For example, <button id="b1">Show text</button> if the button is pressed then show this text div. <div ...
2
votes
1answer
435 views

How to slideUp (hide) children divs in JQuery?

Ok, let's say I have a navigation system constructed in nested divs and I want to show sub-menu divs (and sub-sub-menu divs) when I do a mouseover on the menu div AND hide sub-menu divs (and ...
2
votes
3answers
578 views

jQuery SlideDown and Float issuse

I'm having an issue with jQuery slideDown when the contents of the object I'm sliding down is floated. What happens is that that the div slides down WAY past the height of the contents, and then ...
2
votes
1answer
188 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
1answer
34 views

Jquery UI slideUp and slideDown

I am busy to show and hide some boxes with a click on a button. It is working well but i must click 2 times the first time i want to hide a box? This is my JS code: $(function() { $('.title ...
1
vote
1answer
22 views

Remove jump/jutter at end of slideDown() animation

To start off with I know theres another post on the same topic but the answer for that does not work for me... I am creating a services panel for my website: http://jagdogweb.com/ and at the end it ...
1
vote
1answer
29 views

Jquery slideToggle not opening fully after stop called

I have an issue with a toggling animation with JQuery. I have a menu, which has subitems, which slide open on hover of the main item. This I can achieve fine, however, for a long list of items, I ...
1
vote
4answers
30 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
3answers
83 views

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. <script> $(document).ready(function(){ $(".entry").click(function(){ ...
1
vote
1answer
108 views

jQuery height animation jumps when the animated element has more than 1 row of floated children

enter code hereThe solution to this is eluding me, and unfortunately so is the ability to reproduce the problem outside of the page I'm working on. My question is this: does anybody have any ...
1
vote
3answers
125 views

Problem with slideUp/slidedown in a if statement -jQuery

I have a problem regarding accordion effect I want to make. I would like to have following functionality - If you press anywhere in "div.post" the text surrounded in "p.read-more", which is hidden ...
1
vote
3answers
92 views

jQuery & CSS - match a div's height while animating

I have two <div>'s floated left within a parent <div>. Using jQuery, the div.will_slide_down will slide down at some point (using $("div.will_slide_down").slideDown()). When it is sliding ...
1
vote
2answers
182 views

jquery effect - Slide hidden div down / Up, hiding currently showed hidden div

* Scenario i wish to make a jquery effect like the one found on this website, which is sitting to the right of the main flash add: http://www.commbank.com.au/ * Problem I have made a start, but ...
1
vote
2answers
135 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 ...
1
vote
3answers
66 views

problem to hide image when slideUp menu

I've a menu with slideUp and SlideDown. The user clicks in menuArea and the menu is opened and an image with a cross becomes visible. To close the button the user click in the image, and that image ...
1
vote
5answers
136 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
4answers
149 views

jQuery: slideDown does jump

i have the following function. function notificationBoxOutput(type, message) { if (type == "success") { $('.notificationBox').removeClass('warning').addClass('success'); } if (type == ...
1
vote
2answers
76 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
4answers
118 views

jQuery: Selecting only ul, not ul ul

I'm trying to beat a basic accordion style menu into submission – using jQuery. Here's the menu: http://www.cybart.com/bscg/ Here's a snippet of code that gives it accordion functionality: ...
1
vote
1answer
159 views

jQuery: Close What's Open, Open What's Closed

I am working on a simple accordion-like vertical menu: http://www.cybart.com/bscg/ Clicking on OUR SOLUTIONS, PRODUCT COVERAGE, OUR TEAM or CONTACT US opens or closes the submenus. However, if you ...

1 2 3 4