I have this nested table structure. Is it possible to merge 111 and 222? i would like to delete the lines between 111 and 222 . Maybe I need to use jQuery?
The output I want:
111 222 | aaa | aaa | aaa | aaa | aaa | aaa
This is how the markup looks:
<table border="1">
<tr>
<td>
<table border="1">
<tr>
<td></td>
<td>111</td>
</tr>
</table>
</td>
<td>222</td>
<td>aaa</td>
<td>aaa</td>
<td>aaa</td>
<td>aaa</td>
<td>aaa</td>
<td>aaa</td>
</tr>
</table>
This html should remove the border between 111 and 222 –
Working demo – http://jsfiddle.net/dnfJ5/4/