jQuery Selectors and Filtering - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T11:52:35Z http://stackoverflow.com/feeds/question/770042 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/770042/jquery-selectors-and-filtering 1 jQuery Selectors and Filtering rgeorge 2009-04-20T20:53:21Z 2009-04-20T21:11:37Z <p>Hi all:</p> <p>I'm just getting going with jQuery and am pretty excited about it. </p> <p>My reason for posting is that I've written some jQuery that does it's required task, but I'm suspecting that it lacks a little in elegance...</p> <p>I'm trying to grab all table rows that have: 1) a class of 'item' 2) a child text input box that has a value</p> <h2>The HTML:</h2> <pre><code>&lt;tr class="item"&gt; &lt;td class="sku"&gt;[dynamic]&lt;/td&gt; &lt;td class="quantity"&gt; &lt;input type="text" name="[dynamic]" maxlength="3" /&gt;&lt;/td&gt; &lt;/tr&gt; </code></pre> <h2>The jQuery</h2> <pre><code>... var selections=$(".item&gt;.quantity&gt;:text[value!='']").parent().parent(); ... </code></pre> <p>The code I posted above works, but there are two things (at least?) that smell a little funny.</p> <p>Code smell #1: I'm using '.parent().parent()' at the end to grab the whole row. Is there some way that I can just say, "give me all tr's with a class of 'item' where the child text input has a value" instead of backtraking up the heirarchy at the end?</p> <p>Code smell #2: I can't figure out a way to 'trim' the text input's value during the selection to ensure that whitespace isnt interpreted as content. With my current method, I would have to 'trim' and check again during the .each loop, which seems redundant.</p> <p>Let me know if you see a 'better way'?</p> <p>Thanks, Richard</p> http://stackoverflow.com/questions/770042/jquery-selectors-and-filtering/770058#770058 4 Answer by Seb for jQuery Selectors and Filtering Seb 2009-04-20T20:57:06Z 2009-04-20T20:57:06Z <p>#1</p> <p>Use this instead (note the <code>has</code> selector):</p> <pre><code>var selections=$(".item:has(&gt;.quantity&gt;:text[value!=''])"); </code></pre> <p>#2</p> <p>Spaces are usually considered to be valid input, so if your application specifically needs otherwise, it's ok to filter in a loop using <code>$.trim()</code>.</p> http://stackoverflow.com/questions/770042/jquery-selectors-and-filtering/770106#770106 2 Answer by Paolo Bergantino for jQuery Selectors and Filtering Paolo Bergantino 2009-04-20T21:11:37Z 2009-04-20T21:11:37Z <p>I'm not sure if you are doing this intentionally, but you don't have to traverse down each child down to the input. Unless you have a reason for doing so, this is just as good:</p> <pre><code>var rows = $('tr.item:has(input:text[value!=''])'); </code></pre> <p>Also note that the <a href="http://docs.jquery.com/Selectors/text" rel="nofollow">jQuery documentation</a> suggests you preface <code>:text</code> with <code>input</code> as leaving it out is equal to <code>*:text</code> which is a very slow selector.</p>