[jQuery] Shortest Selector

[jQuery] Shortest Selector

<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?
<span style="font-weight: bold;">$(this).parents("tr").next("tr").find("div")
</span>
Glen