Confusing title, huh? I tried to explain it as best as i could.
What i mean is, if i have a menu like this:
<ul>
<li> Home </li>
<li class="current"> Portfolio </li>
<li> Store </li>
<li> About </li>
</ul>
and use the .next() method to get the next element FROM the current one:
$('ul li.current').next()
the result selector is:
ul li.current.next()
instead of a real selector. I mean, i can't target ul li.current.next() with CSS (and therefore it isn't a "real" selector). The real selector would look like ul li.
Is there any way to get the "real" selector of the next element?
var test = $('#ul li'); alert(test.html()); test = test.next(); alert(test.html());does it work as expected? I'm thinking your selector is too narrow to work correctly. – Tejs May 9 '11 at 18:30