T
Tomasz Cenian
alex bazan napisał(a):
Always append new rows to <tbody> instead of <table>, i.e:
<table border="1">
<tbody id="a">
<tr>
<td><input type="button" onclick="newItem()" value="new item"></td>
</tr>
</tbody>
</table>
<table id="a" border="1">
<tr>
<td><input type="button" onclick="newItem()" value="new item"></td>
</tr>
</table>
Any suggestions?
Always append new rows to <tbody> instead of <table>, i.e:
<table border="1">
<tbody id="a">
<tr>
<td><input type="button" onclick="newItem()" value="new item"></td>
</tr>
</tbody>
</table>