Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 762909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T16:28:24+00:00 2026-05-14T16:28:24+00:00

You will notice when you click posture 1 the description drops down and images

  • 0

You will notice when you click posture 1 the description drops down and images appear on the right. Now when you click posture 2 or posture 3 the images and description change as they should.

view website

What I need to do now is –

If posture 1 has been clicked and then posture 2 is clicked the posture 1 menu needs to close so that there is only one posture description visible at one time.

If I could also make it so that if the current open posture item is clicked so that it closes and there are no open posture descriptions that there also no images displayed on the right.

Finally is there a way to make sure only one set of animation images is running, because just say the user goes through all 26 options and they continue to run in the background it may get sluggish (thanks to Nick Craver for bringing that up).

At this stage only posture 1, 2 and 3 are available. Ok finally some code –

//Description drop-down boxes

$(document).ready(function(){

//Hide (Collapse) the toggle containers on load
$(".toggle_container").hide(); 

//Switch the "Open" and "Close" state per click
$("h5.trigger").toggle(function(){
    $(this).addClass("active");
    }, function () {
    $(this).removeClass("active");
});

//Slide up and down on click
$("h5.trigger").click(function(){
    $(this).next(".toggle_container").slideToggle("slow");
});

});

//Images on the right fade in and out thanks to aSeptik
$(document).ready(function(){
$(‘#section_Q_01,#section_Q_02,#section_Q_03’).hide();

    $(function() {
        $('h5.trigger a').click( function(e) {
        e.preventDefault();
        var trigger_id = $(this).parent().attr('id'); //get id Q_##
        $('.current').removeClass('current').hide(); //add a class for easy access & hide
        $('#section_' +  trigger_id).addClass('current').fadeIn(5000); //show clicked one
    });
});

});

//Fading pics

$(document).ready(function(){
$(‘.pics’).cycle({
fx: ‘fade’,
speed: 2500
});
});

Description boxes –

<h5 class="trigger" id="Q_01" ><a href="#">Posture 1 : Standing Deep Breathing :</a></h5>
                        <div class="toggle_container" >
                            <div class="block">
                            <span class="sc">Pranayama Series</span>
                            <p class="bold">Benefits:</p>

                            </div>
                        </div>

                        <h5  class="trigger" id="Q_02" ><a href="#">Posture 2 : Half Moon Pose With Hands To Feet Pose :</a></h5>
                        <div class="toggle_container">
                            <div class="block">
                            <span class="sc">Ardha Chandrasana with Pada-Hastasana</span>
                            <p class="bold">Benefits:</p>

                            </div>
                        </div>

                        <h5 class="trigger" id="Q_03" ><a href="#">Posture 3 : Awkward Pose :</a></h5>
                        <div class="toggle_container">
                            <div class="block">
                            <span class="sc">Utkatasana</span>
                            <p class="bold">Benefits:</p>

                            </div>
                        </div>

and the images on the right –

 <div id="section_Q_01" class="01">
                        <div class="pics"> 
                            <img src="../images/multi/poses/pose1/Pranayama._01.jpg"/> 
                            <img src="../images/multi/poses/pose1/Pranayama._02.jpg"/> 
                            <img src="../images/multi/poses/pose1/Pranayama._03.jpg"/> 
                        </div> 
                    </div>


                    <div id="section_Q_02" class="02">
                        <div class="pics"> 
                            <img src="../images/multi/poses/pose2/Half_Moon_Pose_04.jpg" /> 
                            <img  src="../images/multi/poses/pose2/Backward_Bending_05.jpg" /> 
                            <img src="../images/multi/poses/pose2/Hands_to_Feet_Pose_06.jpg" /> 
                        </div> 
                    </div>  

                    <div id="section_Q_03" class="03">
                        <div class="pics"> 
                            <img src="../images/multi/poses/pose3/Awkward_01.jpg" /> 
                            <img src="../images/multi/poses/pose3/Awkward_02.jpg" /> 
                            <img src="../images/multi/poses/pose3/Awkward_03.jpg" /> 
                        </div> 
                    </div>                  

It would be a bonus if images faded out when another element is clicked… but not a big deal.

Thanks for having a look

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T16:28:24+00:00Added an answer on May 14, 2026 at 4:28 pm

    DEMO: http://jsbin.com/aceze/28
    SOURCE http://jsbin.com/aceze/28/edit

    JQUERY CODE:

    $(function() {  
    $('h5.trigger a').click( function(e) {
    e.preventDefault();
    //TOGGLE PART
     $('.block').slideUp(400); 
      if( $(this).parent().next().is(':hidden') ){
          $(this).parent().next().slideDown(400);
      }
    //DISPLAY HIDE BASED ON CLICK
    var trigger_id = $(this).parent().attr('id');
    $('.current').removeClass('current').hide();
    $('#section_' +  trigger_id).addClass('current').fadeIn(500);
    // IMAGE SLIDER
    $('#section_' +  trigger_id +' .pics img:gt(0)').hide();
        setInterval(function(){
          $('#section_' +  trigger_id +' .pics :first-child').fadeOut()
             .next('img').fadeIn()
             .end().appendTo('#section_' +  trigger_id +' .pics');}, 
          3000);
      });
    });​
    

    HTML TOGGLE PART MUST LOOK LIKE THIS

    <div class="toggle_container">
     <h5 class="trigger" id="Q_01" ><a href="#">Posture 1 : Standing:</a></h5> 
       <div class="block" style="display: none">
           <span class="sc">Pranayama Series</span>
             <p class="bold">Benefits:</p>
         </div>
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

http://www.therapistsurvey.com/vignette0/vig01 Notice that once you click the See Parents' Response, the link will trigger
You will notice the :hover CSS for the links in the main nav area
On the left you will notice the google logo rendered by IE, I drew
Many editors will notice when a file changes out from under them. Are there
I have worked out how to fade an element in: Click here to view
In Visual Studio as most of you will have noticed that related file can
I noticed C++ will not compile the following: class No_Good { static double const
I have noticed jQuery (or is it Firefox) will turn some of my <span
First of all, I will admit I am a novice to web services, although
Will limiting a query to one result record, improve performance in a large(ish) MySQL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.