hello, i'm trying to delete one row in a dynamically generated table; the problems is that none of these rows have any class or ids generated and i can't get at the code. it generates code like this:
<tr>
<td class="label">Who referred you?</td>
<td class="data">somebody</td>
</tr>
<tr>
<td class="label">terms</td>
<td class="data">these are the terms</td>
</tr>
is there any way to get at the row that has "terms" (in this case the 2nd row) and delete that whole row? something with the text() and filter() that i dont understand? i know i can delete the 2nd row easily, but sometimes it will be the 2nd and sometime not. thanks very much.