jQuery selector - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:57:09Z http://stackoverflow.com/feeds/question/783109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/783109/jquery-selector 1 jQuery selector jerome 2009-04-23T19:07:31Z 2009-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#783128 10 Answer by Paul for jQuery selector Paul 2009-04-23T19:09:48Z 2009-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#783158 4 Answer by Miquel for jQuery selector Miquel 2009-04-23T19:16:23Z 2009-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#783177 0 Answer by Chris Brandsma for jQuery selector Chris Brandsma 2009-04-23T19:21:58Z 2009-04-23T19:21:58Z <p>Or try $(this).childred("a:link")</p> http://stackoverflow.com/questions/783109/jquery-selector/783183#783183 0 Answer by kbosak for jQuery selector kbosak 2009-04-23T19:24:16Z 2009-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#783201 0 Answer by b. e. hollenbeck for jQuery selector b. e. hollenbeck 2009-04-23T19:30:32Z 2009-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 &gt; 'a').css("color","#99ccff"); }); } </code></pre> <p>Like so.</p>