Click to See Complete Forum and Search --> : Tables


Atom290
09-09-2003, 12:31 PM
Is it possible to name a cell within a table then programatically edit that cell?

Please help or suggest another method

AdamBrill
09-09-2003, 12:38 PM
Hmm... something like this?<table border=1>
<tr>
<td id="num1">
test
</td>
<td>
<input type="button" value="Click to change!" onclick="document.getElementById('num1').innerHTML='Da Change!';">
</td>
</tr>
</table>

Atom290
09-09-2003, 12:49 PM
Cheers for your help