I am trying to setup a rotating panel, however I have three states: active, inactive, disabled.

I only want to rotate between active and inactive panels and skip over disabled panels. If there is no more inactive panels rotate back to the first panel.

However with the code below you click the button it will select panel1, then panel 2, and back to panel 1, not selecting panel5.. If I remove the not selector from bold part below it works as expected. I think it's my understanding (or lack thereof) of the next operator. Any thoughts?

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.7.min.js" type="text/javascript"></script>  
<script type="text/javascript">
    $(function () {
        $("#rotate").click(function () {
            var ActivePanel = $('.active');                 //Get the current active panel 
            var NextPanel = $('.active').next('.inactive:not(.disabled)'); //Get the next panel to be active. 
            if (NextPanel.length == 0) NextPanel = $("#panel1"); //check for null next. if so, rotate back to the first panel

            console.log("Active Panel: ", ActivePanel);
            console.log("Next Panel: ", NextPanel);

            $(ActivePanel).removeClass("active").addClass("inactive");
            $(NextPanel).removeClass("inactive").addClass("active"); 
        });
    });    
    </script>
</head>
<body>
    <button id="rotate">Rotate Active Panel</button>
    <div id="panel1" class="active"><p>Some Content</p></div>
<div id="panel2" class="inactive"></div>
<div id="panel3" class="inactive disabled"></div>
<div id="panel4" class="inactive disabled"></div>
<div id="panel5" class="inactive"></div>
</body>
</html>
link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

try using the next siblings ~ selector followed by a nested .class, :not(.class) and :first selector

$("#rotate").click(function() {
    var ActivePanel = $('.active');
    var NextPanel = $(".active ~ .inactive:not(.disabled):first");
    if (NextPanel.length == 0) NextPanel = $("#panel1");    
    $(ActivePanel).removeClass("active").addClass("inactive");
    $(NextPanel).removeClass("inactive").addClass("active");
});

Working Example: http://jsfiddle.net/hunter/vfVBB/


Next Siblings Selector (“prev ~ siblings”)

Description: Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.

link|improve this answer
This works but I don't understand why this doesn't work: var NextPanel = $(".active").siblings(".inactive:not(.disabled):first"); – grausamer_1 Dec 2 '11 at 17:13
.siblings() takes all of that elements siblings, before or after. This is why the 1st elements selects the 2nd element and the 2nd element selects the 1st. – hunter Dec 2 '11 at 17:16
Yes I see now. Thanks for teaching me the '~' selector. 10 points for gryffindor. For those interested the documentation is here: api.jquery.com/next-siblings-selector – grausamer_1 Dec 2 '11 at 17:21
So this is similar to nextAll in nature. – grausamer_1 Dec 2 '11 at 19:20
The definitions are very similar: api.jquery.com/nextAll – hunter Dec 2 '11 at 19:22
feedback

The next method only returns the immediate sibling if it matches the selector. Use the nextAll method.

Try the following:

$("#rotate").click(function() {
  var activePanel = $('.active'); //Get the current active panel 
  var nextPanel = activePanel.nextAll('.inactive').not('.disabled').first(); //Get the next panel to be active. 
  if (!nextPanel.length) {
    nextPanel = $("#panel1"); //check for null next. if so, rotate back to the first panel
  }

  console.log("Active Panel: ", activePanel);
  console.log("Next Panel: ", nextPanel);

  $(activePanel).removeClass("active").addClass("inactive");
  $(nextPanel).removeClass("inactive").addClass("active");
});

See here for jsFiddle.

link|improve this answer
This just rotates between panel1 and panel2. – grausamer_1 Dec 2 '11 at 17:02
@grausamer_1 Answer updated. – rich.okelly Dec 2 '11 at 17:18
This works too... Thanks for your time and effort! – grausamer_1 Dec 2 '11 at 19:13
feedback

Yet another way to do it

.nextAll(".inactive:not(.disabled):first")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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