I have a typical navigation set up in my html, like this:
<ul id="navigation">
<li>Home</li>
<li>About</li>
<li>Etc</li>
</ul>
I want to create an indexed array of the <li>'s, then .addClass to any <li> whose index # is greater than a specified number.
What is the best way to do this?
I apologize for the sparse information, but I'm not really sure how to approach it. Thanks!