JQuery :: Multiple Divs Toggle With Click

Dec 18, 2011

I am trying to toggle multiple divs toggle open/closed show/hide with a slide left effect It works but is buggy if you click too fast [URL] I want to create this but control to content in the sliding divs [URL]

View 1 Replies


ADVERTISEMENT

One Function To Toggle Multiple Divs?

Mar 30, 2011

I will have a page with about a 100 or so different links and I would like each one to toggle the visibility of its corresponding hidden div.For instance, if I have a county 'Johnson' when it's clicked I would like the hidden div associated with that county to become visible. I would like to do this without having to write a different function for each one. Is there a way to do this easily?

Below is a solution I was given elsewhere but I couldn't get it to work.Most ideal of all I would like it to work with an image map, with each county having it's own set of stats to be toggled in.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>[code].....

View 9 Replies View Related

Jquery :: Toggle Be Use To Switch Divs On Page Load Instead Of Having To Click A Button To Start The Action?

Jul 20, 2010

Can JQuery toggle be use to switch divs on page load instead of having to click a button to start the action? What would I have to write in the header to make this happen if this is possible?

View 2 Replies View Related

Show/Hide Toggle On Multiple Divs?

Oct 24, 2010

On the homepage of my site, I would like to have some nav links that toggle between a few divs that are below in the content The divs in the content should display one at a time. For example, if you click nav1, the user would see div1. If nav2 is then clicked, div1 would hide and div2 would display.

I have some code that will do this, but for some reason it is hiding any divs that are within the toggled div. I'm very basic with JS and could use some help here. Here is my code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript">
function toggleID(IDS) {
var area = document.getElementById('secondContent');
var sel = area.getElementsByTagName('div');

[Code]...

View 1 Replies View Related

Multiple Checkbox Filter - DIVs Will Toggle

Oct 29, 2010

I am trying to make a multiple checkbox filter. It works by selecting/unselecting checkboxes the divs with classes revered to the checkboxes will activate deactivate.

This is the javascript I founded on the net:
Code:
<script type="text/javascript">
$(document).ready(function(){
$("#events li."+$("input.type_check").attr('id')).addClass('type_hidden');
$("#events li."+$("input.type_check").attr('id')).slideUp();
$("#events li."+$("input.start_check").attr('id')).addClass('type_hidden');
$("#events li."+$("input.start_check").attr('id')).slideUp();
$("#events li."+$("input.place_check").attr('id')).addClass('type_hidden');
$("#events li."+$("input.place_check").attr('id')).slideUp(); .....
To see it working online look here: [URl]

There two problems. I want to replace the sliding effect. I want to make a table with the divs in it. And when a div is deactivated the text or image shows grey and the link is disabled and when activated the text/image shows black/color and the link is enabled. So when you uncheck/check the boxes the divs will toggle between the two styles clickable and unclickable. I also want to make a second checkbox/radio row with different css styles to choose from. When a style is selected and you click on a link in div it will send you to the page with the selected style.

View 6 Replies View Related

Multiple DIVs Toggle Show/Hide?

Dec 7, 2010

Complete JS first timer here, hope you all can understand my difficulties and stupidities without getting too frustrated. Trying to make a portfolio website as a Christmas gift. Anyway, I'm trying to build a menu that:

1. Expands/Retracts when clicking on other 'headers' in the Menu.
2. Allows for more than one object to be listed in each 'header'.

(Something similar to this [URl]... I've tried to hatch together several online solutions but I really have no idea what I'm doing, as you can see:

[Code]...

View 1 Replies View Related

JQuery :: Link Click Toggle Div With Multiple Contents

Sep 8, 2010

i'm looking for something special i guess. cause normaly i'm googling for something i have in mind, put jquery to the search string and voila, but this time i've searched for almost 3 days and give up now.

i am trying to implent a references site. the idea is that you have 1 html site with a list likereference 1reference 2reference 3 ..... with clickable links underneath.

then you have an element centered or somewhere else on the site (e.g. defined as a div area)

now if you click on reference 1, the centerde div should fade in the text, maybe with pictures too. if you click on reference20, the centered div you fade out and the content of reference 20 should fade in an the exact same place.

View 1 Replies View Related

JQuery :: Animate Multiple Divs On Click?

Mar 7, 2011

I want to animate divs on click . But the problem is there are multiple divs and I unable to get the height of each div

my code isfunction show (div) {
var hei = $('.a').height();
$('.show').click(function(){
$('.text').animate({'height' : hei + 'px'})

[Code]...

View 7 Replies View Related

Fading Multiple In And Out Divs On Click

Aug 8, 2007

What i would like to achieve is a single page with multiple fade in/fade out divs.
Like this section of the Apple site, click the navigation on the left, the different content sections fade in/out, the links are all hash links to id'd divs on the page. so the whole thing doesn't fall apart without the script.

I did a bit of a trawl and found this example that works on the mouseover, I had a look as the script and can't see how I would change it from 'hover' to 'click'.
The other I found was this one But the 'multiple' example on there seams to have some sort of 'flicker' and the examples all use script within the href which isn't great accessibility wise.

I also took a look at the Apple page, they are using 'scriptaculous' to do this, but they also do a bunch of other things on that page so finding the bit that just does the click fading, is a bit like a needle in a haystack.

View 2 Replies View Related

JQuery :: Hover And Multiple Divs - All Hidden Divs Are Shown, Not Just The One That Supposed To?

Oct 14, 2010

I have been trying to do some tooltips for a website and desperately wanted to learn something new and do that with jQuery.However, every time a mouse hovers over a tooltip, all hidden divs are shown, not just the one that supposed to. Here's my html:

Code HTML4Strict:
<div class="tip">
<a href="#"></a>[code].....

View 2 Replies View Related

JQuery :: Show Two Separate Divs, Hide Divs On One Click?

Aug 19, 2009

I'm looking for some javascript to work with wordpress (jQuery preferrably) that will show/hide multiple divs on one click.

I had one working but it was kinda janky because it was causing me to have two divs with the same ID on one page. No good.

Since I updated to wp2.8.3 prior to launch, it's not working. So I've decided to just try and do it right.

Here's a page: [URL]

So, what I want to happen: On page load, the first tab: "general" and it's corresponding div beneath should be showing. And the first image should be showing. The other content divs and images should be hidden. I've given the text content divs a dashed border to show their borders. When a visitor clicks "dine at home" the general div and image hide, the second content div shows, as does the second image (it's currently the identical image, but the client may change later.) Etc.

I'll be using this function on a few other pages as well.

how to adjust this javascript to work on two different IDs at once?

current code:

Code:
<script type="text/javascript" charset="utf-8">
$(function () {
var tabContainers = $('div.imgswap > div');

[Code]....

View 2 Replies View Related

JQuery :: Toggle Divs With Dynamic Id's?

Nov 23, 2011

I have,essentially, anunlimited number of containers with dynamic ids and a dynamic menu to load each containers content. I have done this fine with static id's but do not know where to go to use dynamic.

<div class="wrapper">
<div id="pf1_1">
My content for pf1_1 container goes here
</div>
<div id="pf1_2">

[Code].....

View 1 Replies View Related

JQuery :: Show / Hide Divs Using Toggle?

May 24, 2011

Completely new to jQuery but I am trying to implement a few pieces on my new website. At the moment I have three images in a row and I want to be able to click on any one of the images and use jQuery to populate a hidden div below the three images that contains more info and slide it out using the fold animation. I'd also like it if when a second image was clicked it closed the currently open div and opened the new one. I've seen tutorials that open the divs but can't find one that closes them again on opening a new one.

Can anyone point me to a tutorial that does this or suggest how it could be done?

View 2 Replies View Related

JQuery :: SlideUp / SlideDown Toggle For Several DIVs

May 21, 2010

I am new to Jquery and was wondering how it is possible to open one DIV while closing all other DIVs ( or maybe just the open ones) all with the same CLASS. I know that the accordion does just that but I ran in some other issues there, because I was not able to use another DIV to trigger the accordion.

Right now I am Using the Toggle, which obviously toggles all DIVs with the class .info
$(".project_btn").click(function(){
$(".info").slideToggle("slow");
$(this).toggleClass("active");
});
Anyways here is again my question: How is it possible to open one div after a click whilst the others with the same CLASS are being closed (if already open).

View 3 Replies View Related

JQuery :: Toggle - Hide Show 2 Divs With One Button

Jul 28, 2010

I have 2 divs: <div id="box1></div> and <div id="box2></div> I also have one link to contoll them both. The effect I want to get is: when I click first time on my link box2 hides, when i click second time also box1 hides, when I click third time both divs should show. I manage to do that both divs hiding but later I can't get the show. Im trying sth like this:

$(document).ready(function() {
$('.slick-hide').click(function() {
$('#box2').hide('fast');
$('.slick-hide').click(function() {
$('#box1').hide('fast');
$(".slick-hide").removeClass("slick-hide").addClass("slick-show");
$('.slick-show').click(function() {
[Code]...

View 2 Replies View Related

Jquery :: Toggle Visibility Of Many DIVs With Images Inside

Jan 9, 2010

I'm pretty new to JavaScript and I've been searching for a way to toggle the visibility of many divs with images inside. Basically I want to have nothing visible, then I have three links that represent three categories of the images. So for example if the user clicks the link "Illustration" I want all the divs with the class illustration to appear. But when the user chooses a new link say, "typography" I want to hide the divs with class illustration and then show the divs with class typography.

View 1 Replies View Related

Toggle Divs With Javascript

Nov 7, 2006

I never have luck in toggling divs with javascript, to which I am new.
Not even with a single browser, let alone making it compatible with all
major browsers. Also, I lack experience with client side codes. Code:

View 1 Replies View Related

Sliding Divs And Get The Toggle Button To Slide With It But Not Disappear?

Feb 5, 2011

I have a script that will slide a div up from the bottom of the page. The toggle button for this div however is going to be right on top of the sliding div. But, when the button is pressed and the div starts to slide down, the script hides the button. Here's an example... [URL] How can I get the toggle button to slide with it, but not disappear?

View 7 Replies View Related

JQuery :: Toggle Function Needs More Than One Click?

Jul 9, 2009

I've made some JQuery code to learn how it works and I saw a strange behaviour with toggle function, here are the code that I wrote:

html:
<div id="apDiv1">
<input type="button" name="gauche" id="gauche" class="bouton" value="Gauche" />

[code]....

View 1 Replies View Related

JQuery :: Multiple Checkbox Toggle Respective DIV

Mar 9, 2010

I have some jQuery code to add and remove a class to toggle an image. It works for one but now I want it to work if I add other checkboxes. Currently all the checkboxes change the 1st div. I would like to make it toggle it's respective div.

<html>
<head>
<title>jquery to Show/Hide a Div</title>
<script type="text/javascript" src="[URL]"></script>
<script type="text/javascript">
$(document).ready(function(){
$("input").removeAttr("checked");
$("input").click(function(){ .....

View 1 Replies View Related

JQuery :: Multiple Checkbox Toggle Class?

Mar 9, 2010

I have some jQuery code to add and remove a class to toggle an image. It works for one but now I want it to work if I add other checkboxes. Currently all the checkboxes change the 1st div. I would like to make it toggle it's respective div.

<html>
<head>
<title>jquery to Show/Hide a Div</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script>

[Code].....

View 2 Replies View Related

JQuery :: Toggle CSS In Multiple Instances Individually?

May 12, 2010

Trying to get this to work individually with each individual instance on the page (usually 5-10 questions on each page)Right now it adds the class to every instance of the div that has the answerCorrect class. need the link to only turn on the specific answer associated with it.

<script type="text/javascript">
$(document).ready(function(){
$(".showAnswer").click(function(){

[code]....

View 3 Replies View Related

JQuery :: Toggle/Switch For Multiple Items?

Dec 29, 2009

I'm looking for a lightweight way to be able to switch between 2 divs on a page.

I have found various ways to do this online with jQuery, but none of which are able to handle multiple switches and make it extendable across the pages of my website efficiently.

For example I could have 12 - 15 individual elements on a page (All with same style) each with an option to switch content e.g. "Click here to do something" then once clicked "it would reveal something" (Within that element/<li> tag) - so it's element specific.

For example:

Code:
<ul>
<li class="box>
Title

[Code]....

But of course as it's element specific you have to associate each id together but you can't have two id="2" - as that won't validate.....

Looking around, a perfect example can be seen at: [URL]

And because it's CMS driven and will have multiple categories/pages, you can't list all the id's with the javascript, so it has to be portable/OOP (Is that the word?) so just a main identifier in the JS...??

Where you click to reveal code and it switches div, but only for that element, it doesn't effect anything else.

View 2 Replies View Related

JQuery :: How To Toggle 2 Function On Mouse Click

Aug 17, 2011

I need to toggle 2 function on mouse click, I am posting my work below

In my domain [URL] when you click @ current work. you find a T-shirt with a Page flip

When I click the Page Flip I need to detail about the product and again on flip the image should return back but now when I click the flip the img is hiding and its displaying the description but I lost the flip icon

I need to return back the img on clicking again the page flip.

View 1 Replies View Related

JQuery :: Suppressing Toggle On Link Click?

Apr 13, 2009

I'm using the jquery.treeview plugin to build an outline. Each element within the outline has a link to the side of it that runs a javascript function. I'd like to have users click on this without triggering the toggle of the element. Below is a very simple html file that shows the problem- each element has a [+] to the side of it- when you click on that link, in addition to the alert, the group will expand or contract. Any ideas how to suppress that when clicking on the [+], but allow it when clicking on
the text itself?

[Code]...

View 1 Replies View Related

JQuery :: Toggle Breaks On Double Click?

Dec 16, 2010

I have a click function that works perfectly when you click so. As soon as there's an animation on toggle() such as Blind or Slide, it no longer toggles.

here's my code:
// Accordion
$('#accordion h3').click(function() {
$(this).next().toggle('blind');
$(this).toggleClass('ui-state-active');

[Code]....

When I change it to toggle() with no animation, works perfectly fine and I can click as fast as I want.

what should I do to say if it's already animated. is(":animated") ?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved