I want to change change the table TD cell.
I know how to do this with a jscript and this works
in IE en FireFox but not in opera. The column Links i want to change to 50 px is not set to its correct width (seems mutch to large)!
The code, a two column one row table
<table border="1" width="800px">
<tr>
<td id="Links" width="200px">oke1
</td>
<td id="Rechts" width="600px">oke2
</td>
</tr>
</table>
<script language="javascript">
Links.width="50px";
</script>
I can give cell Rechts a width of 600px or zet it to * value that doesnt help.I set
I do set the column Links first to a value and later to a smaller value with a script.
I do want to use it in a script, because i need it for other code as well.
What am i doing wrong? It looks simple streightforward code to me.


