blob: 03d10c6714d15923a8695515ec76bb842afa7854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<script>
function doTest() {
document.getElementById("t").style.display = "table-row";
}
</script>
</head>
<body onload="doTest()">
<table style="border-collapse: collapse">
<tr style="display: block; border: 5px solid">
<td>LongLongLong</td>
</tr>
<tr style="display: none; border: 5px solid" id="t">
<td>Short</td>
</tr>
</table>
</body>
</html>
|