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?

link|improve this question

can you show more js than that? – Neal May 9 '11 at 18:27
2  
What is the problem? Do you want to get an equivalent CSS selector? – Felix Kling May 9 '11 at 18:28
If you do 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
feedback

4 Answers

up vote 2 down vote accepted

If you want the equivalent CSS selector, it would be:

ul li.current + li

See: Adjacent sibling selector

Note: Not supported in IE6.

Also note that jQuery does not use CSS selectors to match all the elements. The selector syntax is just similar (it is a superset) to CSS because it seemed to be the most natural way. It uses methods provided by the browser (e.g. querySelectorAll) where it can but it also has to traverse the DOM in order to find the elements.

E.g. you can never match $('td').closest('tr') with CSS as you cannot "move up" with CSS.

I hope this answers your question, if not please clarify it.

link|improve this answer
thats cool didn't know you could do that still learning css though haha ie6 bahh – mcgrailm May 9 '11 at 18:31
+1 for good, thorough solution. – pixelbobby May 9 '11 at 18:36
It turns out i didn't need to do it this way, but i still needed to know how to do it, and your solution worked. Thanks! (and i stopped supporting IE6 months ago, so no worries about that!) – qwerty May 9 '11 at 19:09
feedback

what you have there will give the next li see fiddle

what did you want to get ?

link|improve this answer
feedback

$('ul li.current').next() will simply return the next <li>. It will return

<li> Store </li>
link|improve this answer
feedback

This works:

$(document).ready(function() {
  var $li = $("ul li.current").next();
  $li.css("font-weight", "bold");
});

Or you can skip the var assignment and access it like this:

$("ul li.current").next().css("text-decoration", "underline");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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