I'm having a little problem here, I want to use next() but I want to ignore nested lists... how can this be done? Right now next will select both the main list and the nested lists.
So say I have...
<ul id="mainlist">
<li>1</li>
<li class="selected">2</li>
<ul id="nested">
<li>A</li>
<li>B</li>
<li>B</li>
</ul>
<li>3</li>
</ul>
$(".selected").next().css("color", "red");
In this situation, the entire "nested" list color changes to red. But I would like the "3" to be red... What can I do in this situation?
Any help is appreciated, thank you.
NOTE: This is just an example problem, I'm actually trying to create navigation through list items but figured this code would be easier for an example.
$(".selected").siblings().next().css("color", "red");? – OptimusCrime Feb 21 at 7:48