Can jQuery selectors be applied to an element rather than the whole document? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:55:23Z http://stackoverflow.com/feeds/question/624757 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document 0 Can jQuery selectors be applied to an element rather than the whole document? Florin 2009-03-09T01:53:51Z 2009-03-09T09:52:04Z <pre><code>jQuery('td[class=bgoff]').each(function() { var td = jQuery(this); ... no apply selector to "this" only }); </code></pre> <p>I'm working with tabular data in html and trying to parse the contents of each TD (they are not uniquely identifiable).</p> <p>Using XPath, I can prepend the path of "this" to additional selecting. </p> <p>How can I achieve this with jQuery?</p> http://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document/624781#624781 6 Answer by Scott Evernden for Can jQuery selectors be applied to an element rather than the whole document? Scott Evernden 2009-03-09T02:03:32Z 2009-03-09T02:03:32Z <p>With jQuery you have the option of supplying a second parameter after the selector expression and that becomes a context that jQuery uses to limit scope of the lookup. Learn more <a href="http://docs.jquery.com/Core/jQuery#expressioncontext" rel="nofollow">here</a></p> http://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document/624790#624790 7 Answer by Joel Potter for Can jQuery selectors be applied to an element rather than the whole document? Joel Potter 2009-03-09T02:13:46Z 2009-03-09T02:13:46Z <p>You can also use .find(expression) if you already have a jquery object within which you wish to search.</p> <p>In your example:</p> <pre><code>jQuery('td[class=bgoff]').each(function() { var td = jQuery(this); $(td).find( &lt;selector to search within td&gt; ); }); </code></pre> http://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document/625604#625604 0 Answer by Tom Viner for Can jQuery selectors be applied to an element rather than the whole document? Tom Viner 2009-03-09T09:52:04Z 2009-03-09T09:52:04Z <p>From the <a href="http://dev.jquery.com/browser/trunk/jquery/src/core.js#L73" rel="nofollow">jQuery source</a>:</p> <pre><code>// HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) </code></pre>