Table tFoot Property
Table Object
Definition and Usage
The tFoot property returns a reference to the tfoot element of a table.
The tfoot element is used to group the footer content in an HTML table.
Syntax
Browser Support

The tFoot property is supported in all major browsers.
Example
Example
Alert the innerHTML of <tfoot>:
<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById('myTable').tFoot.innerHTML);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Sum</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">Show innerHTML of tfoot</button>
</body>
</html>
Try it yourself »
Table Object
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]