appendCells1.html (370B)
1 <HEAD> 2 <SCRIPT src=tableDom.js> 3 </SCRIPT> 4 <SCRIPT> 5 6 function doIt() { 7 appendCellAt(0, 1, 1); 8 9 appendCellAt(1, 1, 1); 10 appendCellAt(1, 1, 1); 11 } 12 </SCRIPT> 13 </HEAD> 14 <BODY onload="doIt()"> 15 <table bgcolor=orange border> 16 <tr> 17 <td>c11</td><td>c12</td> 18 </tr> 19 </table> 20 <table bgcolor=orange border> 21 <tr> 22 <td>c11</td><td>c12</td> 23 </tr> 24 </table> 25 </BODY></HTML>