0
votes
2answers
46 views
Possible to print list items hidden by Jquery “slideup” function
i'm trying to get this accordion to expand when printed. the code degrades gracefully when javascript is turned off, but it just doesn't expand when printing.
here's a demo of it so you can see how …
0
votes
2answers
139 views
jQuery slideDown / slideUp not working in IE7
So I'm using a very basic jQuery .slideDown which is working great in FF, Safari, and Chrome. Won't work at all in IE7. here is the script:
//Top Mailing List Drop down animation
…
0
votes
3answers
262 views
Best approach to slideup and tabs with jQuery
I'm creating a page with an image at the top, and a menu below. When the user clicks on on of the 3 menu buttons, the image slideUp and the page scrolls down so the menu is at the top of the page, …
0
votes
3answers
184 views
Trying to toggle multiple DIV’s with Jquery
Hello All,
I have been trying to get this function to work for awhile now. I have 11 different divs that are hidden by default. Each have a "trigger" button that is supposed to get them to pop open. …
4
votes
2answers
86 views
div will slideDown but it won’t slideUp
Hello All, 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 …
0
votes
1answer
68 views
My Own jQuery Accordion
Hey Guys, i have created the following Menu Structure:
<div id="menu">
<ul>
<li><a href="#">Main Item1</a></li>
<li><a href="#">Main …
0
votes
1answer
46 views
jquery slideup doesn’t seem to be sliding smoothly
When I call slideup or slidedown on my div, it seems to be sliding very very fast. Do I need to slideup all the inner elements also?
my DOM:
<div id="outer">
<div id="inner">
…
2
votes
1answer
169 views
[jQuery] - slideUp multiple divs
Hello!
How can i make sure that several divs are slided up? Right now I have this function:
$("div#personal").click(function() {
$("div.1").slideUp("slow", function () { …
1
vote
1answer
135 views
Using anchor after adding using jquery html
Hi,
This is two questions in one really...
First, I have a list of 'tickets'. Each ticket has a unique ID, which I am using to ID the element. There is an option to click ('a.showMore') to view more …
0
votes
1answer
192 views
Problem with animating the deletion of table rows in jQuery
Hey guys, I have written some jQuery code to use the "slideUp" animation when deleting rows from a table. In order for the animation to appear smooth, I wrapped the contents of each TD in the row with …
0
votes
4answers
2k views
jQuery smooth change of innerHTML
I have the code below working like a charm:
var div = $('#div');
div.html('<div>one line</div><div>another line</div>');
div.slideDown('slow');
But the problem comes when I …
0
votes
1answer
229 views
Slideup\Animate next page with jquery
I use the following to load a new page within the current page, no refresh.
$(document).ready(function(){
$("#leftnav").click(function(){
…
4
votes
2answers
798 views
jQuery - Wait till end of SlideUp()
Hey,
How can I wait till the end of the jQuery function slideUp() before continuing the script?
<script type="text/javascript">
$(document).ready(function() {
…
1
vote
2answers
869 views
jQuery REplace Fade Effect with slide up /Slide Down
Can anyone help me to rewrite the below code which use a fade effect , to use a sliding effect.I want Slide up and Slide Down
function ShowCostMetrics()
{
$("#pnlGraph").fadeOut("slow",function()
…
0
votes
2answers
213 views
jquery: how can I prevent the webpage from scrolling back to the top when I use slideup?
I have a webpage with multiple DIV elements. If i use the jquery function SlideUp to hide one (which is towards the bottom of the page), the page automatically scrolls back to the top. How can I …
