JavaScript Reference/Javascript Properties/tFoot
"tFoot" Example
<html>
<body>
<script language="JavaScript">
function function2() {
document.all.myTable.tFoot.style.backgroundColor = "red";
}
</script>
<table id="myTable" border="1" width="500">
<thead>
<tr>
<td>tHead, Cell 1</td>
</tr>
</thead>
<tbody>
<tr>
<td>tBody, Cell 2</td>
</tr>
<tr>
<td>tBody, Cell 3</td>
</tr>
<tr>
<td>tBody, Cell 4</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>tFoot, Cell 5</td>
</tr>
</tfoot>
</table>
<button onclick="function2();">Turn Foot Red</button>
</body>
</html>
"tFoot" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<table> |
+----------------+--------------------------------------------------------------+
"tFoot" Syntax and Note
Note:
Read and write property.
Specifies a reference to a <tfoot> element.
Syntax:
document.getElementById("tableID").tFoot = value
document.all.tableID.tFoot = value // IE only