<table>
<tr id="first"><td>1cell</td><td>2cell</td></tr>
<tr id="second" style="display:none"><td colspan="2" >2nd row content</td></tr>
</table>
and the javascript:
document.getElementById('second').style.display = 'block';
why second row td colspan=2 dosn't work - text '2nd row content' is only in 2nd row 1st cell?
<tr id="first"><td>1cell</td><td>2cell</td></tr>
<tr id="second" style="display:none"><td colspan="2" >2nd row content</td></tr>
</table>
and the javascript:
document.getElementById('second').style.display = 'block';
why second row td colspan=2 dosn't work - text '2nd row content' is only in 2nd row 1st cell?