[jQuery] Get append() result
If I add a row to a table in the following manner, how can I get a
reference to the added row?
var row = "<tr><td>...</td></tr>";
var newrow;
newrow = $('#docs tbody').append(row);
With the above code new row references the tbody and not the tr.