Fefering to this example: Changing table cell contents.
How is it possible to change a table cell if their is more then 1 column and no content in the cell.
For example change the 3rd cell in the 2nd column?
<table width="200" border="1">
<tr>
<th scope="col">Daten 1</th>
<th scope="col">Daten 2</th>
<th scope="col">Daten 3</th>
</tr>
<tr>
<td id="A1">1</td>
<td id="B1">1</td>
<td id="C1"> </td>
</tr>
<tr>
<td id="A2">2</td>
<td id="B2">2</td>
<td id="C2"> </td>
</tr>
<tr>
<td id="A3">3</td>
<td id="B3">3</td>
<td id="C3"> </td>
</tr>
<tr>
<td id="A4">4</td>
<td id="B4">4</td>
<td id="C4"> </td>
</tr>
</table>