Refreing back and expanding a problem I had earlier in this query
http://experts-exchange.com/Web/Web_Languages/JavaScript/Q_20806010.htmlI want to go one set further and insert a new row/cell inot a mulit layered table.
For Example:-
<table bgcolor="C0C0C0">
<Tr>
<td>
<table>
<tr>
<td>
Cell1
</td>
</tr>
<tr>
<td>
Cell2
</td>
</tr>
<!-- insert a new row/cell at this point -->
<tr>
<td>
Cell3
</td>
</tr>
<table>
</td>
<td>
<table>
<tr>
<td>
Cell1
</td>
</tr>
<tr>
<td>
Cell2
</td>
</tr>
<!-- insert a new row/cell at this point as well-->
<tr>
<td>
Cell3
</td>
</tr>
<table>
</td>
</tr>
</table>
I must collapse the outer table as well to remove the border from around the cell... but I'm at a loss as how to do this. Everything I try keeps getting an unknown runtime error...
Any help gratefully recieved.
PS... Merry Xmas...
Start Free Trial