I have read a lot of the similar questions but I can't find my answer... With the following code I can toggle my chart on and off:
<h6 class="toggle-trigger"><a href="#">Chart 3</a></h6>
<div id="Chartspace3" class="toggle-container"></div>
What I would like to do is when "Chart 3" is clicked, the two following divs are shown like so:
<h6 class="toggle-trigger"><a href="#">Chart 3</a></h6>
<div id="PassOptionSelection" style="display: none; margin-top: 20px"> </div>
<div id="Chartspace3" class="toggle-container"></div>
But it seems like only one of the divs can be toggled by the "toggle-trigger" link...
here is my JS:
$(".toggle-container").hide();
$(".toggle-trigger").click(function(){
$(this).toggleClass("active").next().slideToggle("slow");
return false;
});
[EDIT]
here is a bigger sample of my html:
<h6 class="toggle-trigger"><a href="#">Nombre d'Appels par Passerelle</a></h6>
<div class="toggle-container" id="Chartspace1" style="width: 800px; height: 300px; margin-bottom: 10px"></div>
<h6 class="toggle-trigger"><a href="#">Pourcentage d'Appels par Utilisation de Passerelle</a></h6>
<div class="toggle-container" id="Chartspace2" style="width: 800px; height: 300px; margin-bottom: 10px"></div>
<h6 class="toggle-trigger"><a href="#">Classification des appels par types</a></h6>
<div id="PassOptionSelection" style="display: none; margin-top: 20px"> </div>
<div id="Chartspace3" class="toggle-container" style="width: 800px; height: 800px; margin-bottom: 10px;"></div>
This works well except for the part where only the form will show on the third toggle link, the chart stays hidden...