I have some concept of how I might do this, but could really use an "optimizer" out there to tell me what to do, so it's done right.
This is my markup:
<span class="darkmark">
<em class="active rnr">RR</em>
<em class="apple">Apple Enthusiast</em>
<em class="glasses">Glasses Wearer</em>
<em class="html5">HTML5 User</em>
<em class="wine">Wine Drinker</em>
</span>
It's just a list of little icons that I want to cycle through in a header on a personal size. Cute right?
I would like every 5 seconds or so for the active class to move to the next sibling. Once the all the em's have been cycled through it returns to the first and the process goes on ad infinum.
Just don't know how I might do it. I don't want any user interaction to trigger it (no hover/click) just once the page loads they start cycling.
I realize that these should be in an ul li structure and plan to make that adjustment shortly.
setTimeout(function(){do="stuff";},5000);should do you just fine. – Jared Farrish Mar 20 '11 at 21:58