have such a part of a markup:
<tr>
<td class='a'>data1</td>
<td class='a'>data2</td>
<td class='a'>data3</td>
</tr>
there are inputs which append dynamically into 3 cells with a class like this:
$("selector").has("selector").find(".a").append("<input
type='text'/>");
so inputs draw up one under another which build three columns from inputs.
for example we have three rows of inputs
the task is how to remove any row(it's not a table row)?
any ideas?