Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently applying an "active" class to a set of list items. You can see the fiddle here:

http://jsfiddle.net/y9h5q/906/

EDIT: Here's the HTML:

<div id="slider">
  <ul>
    <li class='active'> a </li>
    <li> b &lt; </li>
    <li> c &lt; </li>    
    <li> d &lt; </li>
    <li> e &lt; </li>
  </ul>
</div>

...and here's the javascript:

var toggleSlide = setInterval(function(){
    $("#slider li.active").removeClass().next().add("#slider li:first").last().addClass("active");
},300);

$("li").click(function(){
    clearInterval(toggleSlide);
});

I'd like for setInterval to only run once, stopping after the very last list item.

I'm not sure whether to use setInterval or setTimeout?

share|improve this question

2 Answers

up vote 2 down vote accepted

You mean like this: http://jsfiddle.net/xELsc/ ?

[Edit: added the script]
Change your js like this:

var toggleSlide = setInterval( function() {
      $("#slider li.active").removeClass().next().last().addClass("active");
},300);
share|improve this answer
Yep! Thank you! – Yahreen Dec 2 '11 at 23:28
Glad to help :) – CrisDeBlonde Dec 2 '11 at 23:28
1  
@CrisDeBlonde, you might copy the fiddle code into your answer for posterity's sake. – Jonathan M Dec 2 '11 at 23:31
@JonathanM yeap, you're right ;) – CrisDeBlonde Dec 2 '11 at 23:33
How does that even work? 0.o – Purmou Dec 2 '11 at 23:36
show 4 more comments

Here's what I came up with:

var toggleSlide = setInterval(function() {
    if ($("#slider li.wasActive").length == $("#slider li").length) {
        clearInterval(toggleSlide);
    } else {
        $("#slider li.active")
            .removeClass("active")
            .addClass("wasActive")
            .next()
            .addClass("active");
    }
    }, 300);

$("li").click(function() {
    clearInterval(toggleSlide);
});

Obviously not as convenient and short as CrisDeBlonde's, but still works. Also, I chained your jQuery for readability's sake.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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