jQuery Selectors - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:32:40Z http://stackoverflow.com/feeds/question/735910 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/735910/jquery-selectors 1 jQuery Selectors Chris 2009-04-09T21:00:14Z 2009-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>&lt;ul id="navLinks"&gt; &lt;li class="selected" id="homeNavLink"&gt;&lt;/li&gt; &lt;li id="aboutNavLink"&gt;&lt;/li&gt; &lt;li id="contactNavLink"&gt;&lt;/li&gt; ... &lt;/ul&gt; </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#735916 0 Answer by Rick Hochstetler for jQuery Selectors Rick Hochstetler 2009-04-09T21:02:41Z 2009-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#735917 7 Answer by Paolo Bergantino for jQuery Selectors Paolo Bergantino 2009-04-09T21:02:44Z 2009-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#736107 0 Answer by Elliot Nelson for jQuery Selectors Elliot Nelson 2009-04-09T22:24:30Z 2009-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>