There seems to be an issue with the div
tag not functioning properly inside a table definition:
<table>
<tr></tr>
<div id="choice"><tr>
<td>-------</td>
<td>-------</td>
<td>-------</td>
<td>-------</td>
</tr></div>
<tr></tr>
</table>
When attempting to use
getElementById("choice").innerhtml="some data with td's"
in IE browser, it does not seem to work. Is there a way to achieve this within a single table?