I have one list with groups name.

<ul id="groups" >
  <li id="group1" ></li>
  <li id="group2" ></li>
  <li id="group3"></li>
</ul>

and sliding containers

 <div id="containers" >
    <ul id="container1" >
      Lorem ipsum ..
    </ul>

    <ul id="container2" >
          Lorem ipsum ..
        </ul>

    <ul id="container3" >
          Lorem ipsum ..
        </ul>
  </div>

What I want to do is when you click on group it is hidding existing container and showing new one.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted
function hideAll() {
    $("#container1 #containter2 #container3").hide();
}

$("#group1").click(function(){
    hideAll();
    $("#container1").show();
}

$("#group2").click(function(){
    hideAll();
    $("#container2").show();
}

$("#group3").click(function(){
    hideAll();
    $("#container3").show();
}

Fast and brutal but might work if you have a small number of elements. If you have a lot more, then you should break things into classes ($(".container").hide();), etc.

link|improve this answer
feedback
$("#groups > *").live('click', function() {
    var linkIndex=parseInt($(this).attr('id').match(/[0-9]+/)[0], 10);
    $("#containers > *").slideUp('slow');
    $("#containers > *").filter(function() {
        var containerIndex=parseInt($(this).attr('id').match(/[0-9]+/)[0], 10);
        return containerIndex==linkIndex;
    }).slideDown('slow');
});

You can demo a (slightly modified) version here.

link|improve this answer
I just realized I could probably have used eq, but this should work too. – icktoofay Jul 31 '11 at 22:55
+1 for the jsfiddle :-) – Tomm Aug 1 '11 at 1:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.