jQuery Selectors - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:32:40Zhttp://stackoverflow.com/feeds/question/735910http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/735910/jquery-selectors1jQuery SelectorsChris2009-04-09T21:00:14Z2009-04-09T22:24:30Z
<p>I'm finding it difficult to find examples of using jQuery, so my bad for asking such a simple question. I've got this ul:</p>
<pre><code><ul id="navLinks">
<li class="selected" id="homeNavLink"></li>
<li id="aboutNavLink"></li>
<li id="contactNavLink"></li>
...
</ul>
</code></pre>
<p>I'd like to write a function to change which li has the "selected" class. Here's my attempt:</p>
<pre><code>function changeNavLink(selectedId) {
$("#navLinks li").each(function() {
$(this).removeClass("selected");
});
$("#" + selectedId).addClass("selected");
}
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/735910/jquery-selectors/735916#7359160Answer by Rick Hochstetler for jQuery SelectorsRick Hochstetler2009-04-09T21:02:41Z2009-04-09T21:02:41Z<pre><code>$('#navlinks li.selected')
</code></pre>
<p>will give you the li with the "selected" class</p>
http://stackoverflow.com/questions/735910/jquery-selectors/735917#7359177Answer by Paolo Bergantino for jQuery SelectorsPaolo Bergantino2009-04-09T21:02:44Z2009-04-09T21:09:20Z<p>You don't have to do <code>.each</code> - functions like <a href="http://docs.jquery.com/Removeclass" rel="nofollow"><code>removeClass</code></a> can work on a set of elements just fine.</p>
<pre><code>function changeNavLink(selectedId) {
$("#navLinks li").removeClass('selected')
.filter('#' + selectedId)
.addClass('selected');
}
</code></pre>
<p>Should work. What it is doing is selecting all the <code>li</code> elements, removing the class <code>selected</code> from all of them, <a href="http://docs.jquery.com/Traversing/filter#expr" rel="nofollow">filtering them out</a> to just the one with the ID passed, and adding the class <code>selected</code> to that one.</p>
<p><a href="http://jsbin.com/ekanu" rel="nofollow">Here is a working link</a> showing the code above at work.</p>
http://stackoverflow.com/questions/735910/jquery-selectors/736107#7361070Answer by Elliot Nelson for jQuery SelectorsElliot Nelson2009-04-09T22:24:30Z2009-04-09T22:24:30Z<p>For the specific HTML example given, I would prefer:</p>
<pre><code>function changeNavLink(selectedId) {
$('#' + selectedId).addClass('selected')
.siblings('li')
.removeClass('selected');
}
</code></pre>