slidetoggle is a function of jQuery which displays or hides the matched elements with a sliding motion.

learn more… | top users | synonyms

0
votes
2answers
27 views

How to prevent repeating slideToggle effect on Dropdown menu?

I have a navigation menu that expands a submenu on hover. My issue is that when I hover on the menu items, the submenu expands and then when i leave the mouse from the menu i get the slideToggle ...
0
votes
1answer
21 views

JQUERY - Container match biggest height

I'm having some problems getting my container div to match the height of its children. Basically what i'm trying to achieve is to get the container height to increase when the children inside are ...
0
votes
2answers
19 views

slideToggle callback function not working

I have a button that uses the slideToggle() method to show hide an element. I am just trying to change the value of the button once the slideup is complete. I have tried using the callback function ...
2
votes
1answer
34 views

Issues with removing attribute from first click(function()) after the second click(function())

Evening ladies and gents, I'm in a bit of a pickle trying to figure out how to remove an attribute from a first click function after the second click function has occurred. <script ...
0
votes
1answer
46 views

Open/Close multiple div with external content loaded

I'm trying to create a portfolio that loads external content when clicking on "read more". Loading external content works fine and the div animates as it should. I even got the same div to close and ...
1
vote
3answers
37 views

how to use set slideToggle to work for more than one time

I have some nested ul tags and I hide them so that I can apply jQuery slideToggle effect to them( I want to slide each element independently). but when I press each 'li' tag in the first 'ul' all the ...
1
vote
4answers
45 views

Javascript, Toggle, Slide

http://jsfiddle.net/Z9zD8/271/ $(function() { $('#toggle1').click(function() { $('.toggle1').toggle(); return false; }); $('#toggle2').click(function() { ...
5
votes
2answers
105 views

Jquery .slideToggle(“slow”); Not work properly for table expander

I try to add .slideToggle("slow"); functionality to my table as per define here. W3Schools Toggle effect work but properly. I need effect like as per above w3school link. You can see my code at ...
0
votes
0answers
22 views

Increase dynamically set height of page with slidetoggle

On my site there's a div#page which has it's height set by javascript in order for the footer text to always be on the bottom of the page. This works perfectly on all pages, except for one page which ...
1
vote
0answers
8 views

JQM Toggle flip switch error calling refresh

i am new to JQM. I am trying to set up a switch control for home automation. There are switches for every room to be controlled by phone or computer. THe issue I am having is that I have one toggle ...
0
votes
0answers
30 views

Issue slideToggle and Wordpress Menu

Hi im having a issue with wordpress menu and jquery slide toggle attatched is the html for the menu its being really annoying and killing the a links to the after .test not sure what to do i have ...
0
votes
1answer
39 views

slide.toggle menu is working fine in all browser but not in default android browser

The slide.toggle menu is working fine in all browsers but not in default android browser I use this script for slide, hide show the toggle menu: $('#menubutton').click(function() { ...
0
votes
5answers
42 views

Slide Down Next UL from H3 with jQuery

<h3>Details<span class="dropdown">View</span></h3> <div id="sbc"> <ul> <li><h2>Role: Supervisor</h2></li> ...
1
vote
2answers
66 views

Jquery Slide effect on absolut positioned Div

I am having some trouble using the slide effect (slideToggle, in this case) on some position:absolute Divs. Before I've done the position work - I needed it for the border arrow - it worked ...
2
votes
2answers
66 views

How to execute the next click only when previous click finish?

My HTML: <div> <p>Testing Paragraph</p> <span>Testing Span</span> <div class="content">This is the main content of this div</div> </div> ...
0
votes
2answers
24 views

JS slidetoggle on UL [closed]

I am trying to slidetoggle ul's. But I stuck. Here is my question: Those codes are working: <div class="splitleft" onclick="toggle_item(b)"> <?php echo $admin_logs ?> ...
1
vote
0answers
72 views

jQuery simle drop down menu . it doesnt work properly

Here is my code. The class of .dropdown-menu is menu botton (where release the code when you hover over it) and class .dropdown-menu is its li child thanks <script type="text/javascript"> ...
1
vote
1answer
23 views

slideToggle not working for me

Im trying to make a left side navigation that slides down with sub categories when you click on one of the links. I've got it to work for the top link only but the others dont work. In my header ...
0
votes
2answers
32 views

jQuery showing at first instance instead of hide

I am using the below code for a menu to apear on a mobile css site. At the moment it is appearing straight away when the site is loaded and I'd rather it load only on request when it is used... Any ...
0
votes
1answer
48 views

jQuery SlideToggle, toggles serveral times with Wordpress Custom Posts

I've made a template in wordpress that contains my portfolio generated with custom post type. I am trying to make a slidetoggle effect when I hover over a portfolio image. The problem is that when I ...
1
vote
0answers
40 views

jQuery slideToggle ul when clicking on parent li

1.) If I click on the image, all of the "Topics" (ul) should close and change their class. I could manage to change the class, but they won't close. I thought this: $("#nav ul ...
0
votes
2answers
39 views

Multiple sliding panels in Javascript/JQuery

fairly new to Javascript and JQuery, so I apologize in advance for my lack of knowledge. That being said, I am trying to make a page with a navigation menu to multiple topics and subtopics. When a ...
0
votes
1answer
25 views

Different content shown based on image map link(s)

I have an image mapped to 3 links at the bottom of a page. Clicking a link slides related content into view from the bottom. Clicking the link again will make the content disappear. Lets say I have ...
1
vote
1answer
291 views

toggle slide from left to right with smooth movement on click of a show/hide button

I have a table with 4 columns and 10 rows having the 4th column hidden by default. There is a show/hide image button in the 1st row. What I need is, when I click on the show/hide image button: the ...
0
votes
1answer
27 views

Reset radio buttons only if the div they're in is toggled closed, but not if another div is toggled open?

I have a page with multiple jQuery slideToggles. Earlier, I asked a question about how to reset selections in one of the toggles when the toggle is closed here: How to reset selected radio buttons ...
0
votes
2answers
39 views

How to reset selected radio buttons when closing slideToggle?

I have a simple slideToggle setup that opens a div on a page. Some of the divs have a self test in them. I'm having trouble figuring out how to reset the radio buttons when the div is closed. Here is ...
0
votes
2answers
40 views

Jquery SlideToggle, prevent toggle in particular circumstance

So I have an H3 that has a grey background rectangle. When you click anywhere in that grey background, a particular div performs a slideToggle(). This works fine. Now, Inside that H3 I also have a ...
0
votes
2answers
40 views

Jquery: SlideToggle on List with divs

I'm trying to use list elements to build a simple menu for my website. The thing is that i want to show the '.second-row' div when the arrow is clicked and hide any other that is open, but all the ...
1
vote
0answers
63 views

Reveal hidden div via slideToggle without pushing down other divs

I ran into this issue while building my online design portfolio. It seems complex to me, but I know there is a way to do it, so I am frustrated that I can't find a solution. Please help! My design ...
1
vote
2answers
57 views

.slideToggle hover on div jquery [duplicate]

I want to be able to slideToggle a div on hover, but it is not working.. Here is the code: <div class='slide-header'> header.... </div> <div class='slide-content'> ...
1
vote
1answer
42 views

Sencha: Togglefield animation not working after “animateActiveItem”

I'm having some trouble with 'togglefield' xtype in Sencha. I've done a lot of testing with different code types and have simplified my application to a few containers. You can see I've added two ...
0
votes
1answer
117 views

.slidetoggle() toggles once too often after .click() event

This is what I am trying to do for my site (not yet live or I would post a link): I want a div to to be hidden when the page first loads (scrolltop() ==0) and to slideup or slidetoggle when the user ...
1
vote
1answer
70 views

jQuery - render multiple div elements w/slideToggle feature

In the index page of my ASP MVC 3 view I have a collection object that may have as many as 50 or so elements. To keep the index clean for the user, I am trying to use the jQuery .slideToggle feature ...
-1
votes
2answers
30 views

Having header viewable while using .slideToggle

I have a div (within #slideup there is a div with a div with PHOTOS) that I want "PHOTOS" to be positioned at the bottom, but when you hover over it it expands up and the header then goes to the top ...
0
votes
2answers
43 views

show/hide switch

I have the following code <input type='radio' name='showhide'></input><input type='radio' name='showhide'></input> <br/> <label> Some tips here!</label> My ...
0
votes
0answers
32 views

Preventing slideDown from moving other elements

I'm currently working on a website with a 32+ div grid with full information that slides down when you click on the h5 tag, but I can't figure out an easy way to prevent slideDown from moving the ...
-3
votes
2answers
48 views

i want my div slideup when clicked anywhere on page

$(".slidingDiv").hide(); $(".show_hide").show(); $('.show_hide').click(function(){ $(".slidingDiv").slideToggle(); }); i want to slide up my div when click outside of it, anywhere on page. thank ...
0
votes
1answer
368 views

jQuery slide toggle change image onclick

I'm using .slideToggle to show/hide content when an image is clicked, it changes once when the content shows but doesn't change back to the original image when its clicked again to hide the content, ...
0
votes
3answers
47 views

Jquery slideToggle issue around <H3> tags

I need small ammendment in the following jquery code. (DEMO is here) If you notice in the demo, Heading One is sliding perfectly up/down as I want but Heading Two and Three are not. The difference is ...
3
votes
4answers
65 views

Loop Function required

Hi I am using a slideToggle function on clickng an image. Suppose there are four images in my page,If I click on particular image its must show a particular content related to image.At present I got ...
1
vote
3answers
53 views

jquery slideToggle call once

That just could be very simple, but it's about 2AM and getting quite sleepy :) I have short script which "slideToggle" div from being non-displayed. $('#cmnt_add').click(function () { ...
1
vote
2answers
64 views

Jquery slidetoggle on document ready and browser resize

I have the following code which works great apart from when I resize the browser. The code basically checks the browser size on document ready and on browser resize to determine whether the menu ...
1
vote
1answer
794 views

jquery sliding side bar Left to right

I am trying to create a sliding side bar with effects similar to www.wookmark.com http://www.dynamicdrive.com/dynamicindex1/slideinmenu.htm. This is how far I wrote the code.But this is jerky. ...
0
votes
2answers
72 views

multiple basic slidetoggles in the same page doesn't work

I use this code for a toggle : <script language="javascript"> function toggle() { var ele = document.getElementById("toggleText"); var text = ...
0
votes
1answer
46 views

Fluid 960 Grid jQuery slideToggle

I am using Fluid 960 Grid for my site and I am using jQuery (the latest). I want to slideToggle a div which is a child div of a div called serviceitem1. Here is my code: div id="serviceitem1"> ...
1
vote
4answers
162 views

Multiple instances of slidetoggle JQuery

I have 3 divs that i'm using to show navigation at the top of my page in my site. All using the JQuery function: $('#div_button').click( function() { $('#div_nav').slideToggle(); ); The ...
0
votes
0answers
11 views

Toggling post content not showing up the second time

I´m currently using this script for the lyrics section of my site. I have a list of songs on the left and when you click the song name the lyrics (post content) appears on the right. When you click a ...
0
votes
1answer
42 views

jQuery toggle and changing text

jQuery $('#message div').hide(); $('.readmore').click(function(e){ e.preventDefault(); $('#message div').slideToggle(); }); html <div id="message"> <p ...
0
votes
2answers
144 views

How do I use jQuery slideToggle if all divs hidden otherwise fade between divs?

On my company website i'm trying to create a Meet the Team section whereby i have a row of four thumbnails of team members and i want their bio's to slide/fade in below when a thumbnail clicked and ...
1
vote
1answer
185 views

Slide form on/off page and expand div

Ok this might be a little tricky but I'm sure it's doable. I have two buttons that I would like to trigger two forms with, initially the user would see the two buttons and one of the forms underneath, ...

1 2 3 4 5 11