<html>
<head>
<script>
function function1() {
document.all.myCell.bgColor = "red";
}
function function2() {
document.all.myCell.bgColor = "";
}
</script>
</head>
<body bgcolor="#EEEEEE">
<table>
<tr>
<td id="myCell" height="79">Cell 1 content</td>
<td height="79">Cell 2 content</td>
<td height="79">Cell 3 content</td>
<td height="79">Cell 4 content</td>
<td height="79">Cell 5 content</td>
<td height="79">Cell 6 content</td>
<td height="79">Cell 7 content</td>
</tr>
</table>
<input type="button" value="Add background color to Cell 1" onClick="function1();">
<input type="button" value="Remove background colors" onClick="function2();">
</body>
</html>
|