jQuery selector problem - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:43:03Z http://stackoverflow.com/feeds/question/963959 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/963959/jquery-selector-problem 0 jQuery selector problem NVA 2009-06-08T08:56:46Z 2009-06-17T02:51:08Z <p>Here is my html source code:</p> <pre><code>&lt;ul id="accordion"&gt; &lt;li&gt;&lt;h3&gt;&lt;a id="1"&gt;&lt;/a&gt;&lt;/h3&gt;&lt;/li&gt; &lt;li&gt;&lt;h3&gt;&lt;a id="2"&gt;&lt;/a&gt;&lt;/h3&gt;&lt;/li&gt; &lt;li&gt;&lt;h3&gt;&lt;a id="3"&gt;&lt;/a&gt;&lt;/h3&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>and javascript</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function(){ $('#accordion li h3').click(function(){ //I want to alert the id attribute of a, but i don't know why //I tried $(this+'a') or $('#accordion li h3:selected a') but it failed. }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/963959/jquery-selector-problem/963968#963968 2 Answer by cobbal for jQuery selector problem cobbal 2009-06-08T08:59:34Z 2009-06-08T08:59:34Z <p>try </p> <p><code>alert($(this).children('a').attr('id'))</code></p>