finding the previous item in a JQuery array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:31:01Z http://stackoverflow.com/feeds/question/1081086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array 0 finding the previous item in a JQuery array Joda 2009-07-03T22:59:50Z 2009-07-03T23:40:36Z <p>I have the jquery: $(".item") </p> <p>which gives me all elements of class item.</p> <p>I need to select an item from the array I get from this method, and then find the item before this.</p> <p>something like: $(".item").select("#3").prev() - except it should work :)</p> <p>so, assuming I had the list of items:</p> <pre><code>&lt;div id=1 class="item"&gt;&lt;/div&gt; &lt;div id=2 class="item"&gt;&lt;/div&gt; &lt;div class="somethingElse"&gt;&lt;/div&gt; &lt;div id=3 class="item"&gt;&lt;/div&gt; &lt;div id=4 class="item"&gt;&lt;/div&gt; </code></pre> <p>I should get the "<code>&lt;div id=2&gt;&lt;/div&gt;</code>" item.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array/1081104#1081104 1 Answer by googletorp for finding the previous item in a JQuery array googletorp 2009-07-03T23:12:21Z 2009-07-03T23:17:39Z <p>You don't write what you got only want you expect. Actually what you should getwith your code is the div with class somethingElse. To get i'd 2 you would do.</p> <pre><code>$(....).prev(".item"); </code></pre> <p>with no args, prev wil get the element just before in the DOM, mo matter style or type.</p> <p>What you do is pretty much equal to</p> <pre><code>$("#3").prev() </code></pre> <p>only slower. The first selection has no effect unless you use end() but is not needed when getting objects by id anyways. </p> http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array/1081147#1081147 2 Answer by Paolo Bergantino for finding the previous item in a JQuery array Paolo Bergantino 2009-07-03T23:38:15Z 2009-07-03T23:38:15Z <p><code>prev</code> only looks at the immediate previous sibling. Try this:</p> <pre><code>$('#3').prevAll('div.item').eq(0); </code></pre> <p>That should get what you want. As mentioned by <a href="#1081104" rel="nofollow">googletorp</a>, doing <code>$('.item').find('#3');</code> is redundant and slower. IDs are supposed to be unique so you should be fine to do <code>$('#3')</code> directly. Do note, however, that IDs, per the spec, <a href="http://www.w3.org/TR/html4/types.html#type-id" rel="nofollow">are not supposed to start with numbers</a>:</p> <blockquote> <p>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").</p> </blockquote>