<HEAD> | |
<SCRIPT src=tableDom.js> | |
</SCRIPT> | |
<SCRIPT> | |
function doIt() { | |
deleteCellAt(0, 1); | |
} | |
</SCRIPT> | |
</HEAD> | |
<BODY onload="doIt()"> | |
The 2 tables should look the same | |
<table bgcolor=orange border> | |
<tr> | |
<td>c11</td><td>c12</td><td>c13</td> | |
</tr> | |
</table> | |
<BR> | |
<table bgcolor=orange border> | |
<tr> | |
<td>c11</td><td>c13</td> | |
</tr> | |
</table> | |
</BODY></HTML> | |