Can jQuery selectors be applied to an element rather than the whole document? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T16:55:23Zhttp://stackoverflow.com/feeds/question/624757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document0Can jQuery selectors be applied to an element rather than the whole document?Florin2009-03-09T01:53:51Z2009-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#6247816Answer by Scott Evernden for Can jQuery selectors be applied to an element rather than the whole document?Scott Evernden2009-03-09T02:03:32Z2009-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#6247907Answer by Joel Potter for Can jQuery selectors be applied to an element rather than the whole document?Joel Potter2009-03-09T02:13:46Z2009-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( <selector to search within td> );
});
</code></pre>
http://stackoverflow.com/questions/624757/can-jquery-selectors-be-applied-to-an-element-rather-than-the-whole-document/625604#6256040Answer by Tom Viner for Can jQuery selectors be applied to an element rather than the whole document?Tom Viner2009-03-09T09:52:04Z2009-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>