finding the previous item in a JQuery array - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T16:31:01Zhttp://stackoverflow.com/feeds/question/1081086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array0finding the previous item in a JQuery arrayJoda2009-07-03T22:59:50Z2009-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><div id=1 class="item"></div>
<div id=2 class="item"></div>
<div class="somethingElse"></div>
<div id=3 class="item"></div>
<div id=4 class="item"></div>
</code></pre>
<p>I should get the "<code><div id=2></div></code>" item.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1081086/finding-the-previous-item-in-a-jquery-array/1081104#10811041Answer by googletorp for finding the previous item in a JQuery arraygoogletorp2009-07-03T23:12:21Z2009-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#10811472Answer by Paolo Bergantino for finding the previous item in a JQuery arrayPaolo Bergantino2009-07-03T23:38:15Z2009-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>