Tagged Questions

2
votes
2answers
60 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 ...
1
vote
0answers
25 views

JQuery slideUp() Temporarily Shows Portion of Target Div in Wrong Area of Screen at Beginning of Animation

Hard to make a good title, but basically my problem is that I have hidden container <div> that I want to slideDown() into view when the user clicks the appropriate area of the screen. When the ...
1
vote
3answers
210 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
3answers
101 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
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
1answer
620 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
2answers
376 views

jQuery slideDown beneath menu button moves all other buttons in FF

I've been working on a menu and have it perfectly working in Chrome/Safari. The URL is http://www.penuli.nl/aboutvanwow.html. But FF is giving me a hard time with the tooltip. Each time I hover over ...
0
votes
3answers
68 views

jQuery slideDown with set height and overflow

I have the following HTML code <div class="text">bla bla bla bla</div> <div class="button">Show</div> And the CSS .text{ height:100px; overflow:hidden; } Assume .text ...
0
votes
1answer
48 views

Link Doesnt Click Jquery

Not sure why this is happening, but if you click on my link the images from the top will slide down and if you click on one of those images they will slide back up. This works exactly how I want it ...
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
1answer
55 views

jQuery or css slideUp/slideDown for a selectbox with size > 1

jQuery's slideUp and slideDown don't seem to do anything with selects. I can wrap the select in a div and use slideUp and slideDown, but so far the effect I get, for the result I want, is really ...
0
votes
4answers
165 views

Add style to an element with Javascript

I've added a simple jquery slideDown function to a client's website but they want to add some style via javascript so that for anyone with JS disabled they still see the content. <script> ...
0
votes
1answer
69 views

Need to show 4 list only - slideDown jquery

Here i have 8 list but i want show only 4 lists with more button after clicking the more button rest of the list will show. please help me out. Here jquery $(document).ready(function() { ...
0
votes
2answers
869 views

make a div slide down without pushing content down

i have an exampe HERE im not sure how to make the div slide down but keeping the content at the top, as in not slide down when the div slides down. could you possibly help me with this?
0
votes
2answers
369 views

jQuery slideDown jumping effect

What is causing this strange jumping effect in FF4 (see sliding down latest jobs)? http://jsfiddle.net/ipavelek/2dMNb/2/ Everyhing works fine in Chrome/Safari. Note: Setting height for .media to ...
0
votes
2answers
318 views

slideDown Doesn't work for me

Why doesn't this jQuery code work? $(document).ready(function () { $('currentPage').click(function() { $('myaccount').slideDown('slow', function() { // Animation ...
0
votes
1answer
354 views

jQuery box height problem - using slideUp/Down

I have a box on my site that when a button is clicked, the box slides up, some new text is loaded into it, and then it slides down revealing the new text. Here is the code I have written for it in ...
0
votes
1answer
119 views

Why when i use jquery slideDown and Up function, the element cannot be padding or it will be an error

Below is my code with padding '#'expand{ padding: 16px; display: none; background-color: #fff; } when i put slidetoggle to this element, it seems like the padding animated with the ...
0
votes
2answers
843 views

jQuery - slideUp / slideDown not working on ul?

I have the following code in my masterpage: jQuery: $(window).load(function () { $("li.submenu").hover( function () { $(this).find("ul").slideDown("slow"); }, function () { ...
0
votes
1answer
171 views

Edit Css with animation effect

I've a div in a absolute position with a default "top" value set to "-200px". When i click on the div the "top" value is updated to "0". In this way I see the entire Div. This is the js: ...