Code: Alles auswählen
table id=tabelle
+-tr id=row10236
| +-td
| +-#Text
+-tr id=row42575
| +-td
| +-#Text
+-tr id=row13987
| +-td
| +-#Text
...
Any ideas?
Grüße,
Tekin
Code: Alles auswählen
table id=tabelle
+-tr id=row10236
| +-td
| +-#Text
+-tr id=row42575
| +-td
| +-#Text
+-tr id=row13987
| +-td
| +-#Text
...
Code: Alles auswählen
<table id="tabelle">
<tbody id="tbody">
<tr id="row10236"><td>row1</td></tr>
<tr id="row42575"><td>row2</td></tr>
<tr id="row13987"><td>row3</td></tr>
</tbody>
</table>
<a style="cursor:pointer" onclick="document.getElementById('tbody').removeChild(document.getElementById('row42575'))">weg!</a>