[jQuery] get reference to nested appended element

[jQuery] get reference to nested appended element


hi there, see next example:
parent.append("<table><tr><td><table id=\"rt0\"/></td></tr></table>");
table = $("#rt0");
is it possible to reference the inside table directly without using
the id to select it?