jQuery selector - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:57:09Zhttp://stackoverflow.com/feeds/question/783109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/783109/jquery-selector1jQuery selectorjerome2009-04-23T19:07:31Z2009-04-23T19:30:32Z
<p>Trying to select anchor tags that are a descendants of a div with a particular id, say it is #mydiv1, #mydiv2 and #mydiv3.</p>
<pre><code>myFunction = function() {
var theDivs = $("#mydiv1, #mydiv2, #mydiv3");
theDivs.hover(function(e){
$(this+" a:link").css("color","#99ccff");
},function(e){
$(this+" a:link").css("color","#848484");
});
}
</code></pre>
<p>The selector $(this+" a:link") doesn't seem to be selecting anything though.</p>
<p>Does anyone have any thoughts on the proper syntax for this selection?</p>
http://stackoverflow.com/questions/783109/jquery-selector/783128#78312810Answer by Paul for jQuery selectorPaul2009-04-23T19:09:48Z2009-04-23T19:20:00Z<p>Try $(this).find("a:link").</p>
<p>EDIT: extra info</p>
<p>When you $(this + "query") you're mixing types. jQuery's selector param is looking for either a query string or an object. When 'this' gets converted to a string it isn't going to be valid selector syntax. For example, you <em>could</em> do something like this: $("." + this.className + "[query]").</p>
http://stackoverflow.com/questions/783109/jquery-selector/783158#7831584Answer by Miquel for jQuery selectorMiquel2009-04-23T19:16:23Z2009-04-23T19:16:23Z<p>You can give an element for context, the following should work:</p>
<p>$("a:link", this).</p>
<p>It will search for the anchors starting in "this" node.</p>
http://stackoverflow.com/questions/783109/jquery-selector/783177#7831770Answer by Chris Brandsma for jQuery selectorChris Brandsma2009-04-23T19:21:58Z2009-04-23T19:21:58Z<p>Or try $(this).childred("a:link")</p>
http://stackoverflow.com/questions/783109/jquery-selector/783183#7831830Answer by kbosak for jQuery selectorkbosak2009-04-23T19:24:16Z2009-04-23T19:24:16Z<p>Either of the above methods should work, but I don't see anything in the jQuery selector syntax about ":link" being valid syntax. Perhaps try leaving that off as well if the above methods don't work for you.</p>
<p>And the reason your original method didn't work is that "this" is a DOM element, not a string in your code. As previously mentioned, you can make it a jQuery object by doing "$(this)" or just use the DOM element as the search context.</p>
http://stackoverflow.com/questions/783109/jquery-selector/783201#7832010Answer by b. e. hollenbeck for jQuery selectorb. e. hollenbeck2009-04-23T19:30:32Z2009-04-23T19:30:32Z<p>Iterate over the divs with .each(), and use the child selector:</p>
<pre><code> myFunction = function() {
var theDivs = $("#mydiv1, #mydiv2, #mydiv3");
theDivs.each(function(){
$(this > 'a').css("color","#99ccff");
});
}
</code></pre>
<p>Like so.</p>