<TR>
 <TD>
    <A>ONE</A>
 </TD>
</TR>
<TR>
 <TD>
    <DIV>TWO</DIV>
 </TD>
</TR>


What is the shortest Selector to find the DIV if one starts with A (this)

This is the best I got, but is there a shorter way?
$(this).parents("tr").next("tr").find("div")


Glen

Reply via email to