1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
13 var td
= document
.getElementById("td2");
14 td
.style
.height
= "60px";
19 var td
= document
.getElementById("td2");
20 td
.style
.height
= "20px";
26 <input style=
"display:block;" type=
"button" onclick=
"longTD();" value=
"[Step 1] Set cell height to 60px">
27 <input style=
"display:block;" type=
"button" onclick=
"shortTD();" value=
"[Step 2] Set cell height to 20px">
30 <tr><td id=
"td1">1</td><td>2</td></tr>
31 <tr><td id=
"td2">2</td><td>2</td></tr>