HTMLTableElement: deleteTFoot() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The HTMLTableElement.deleteTFoot() method removes the <tfoot> element from a given <table>.
Syntax
js
deleteTFoot() Parameters
None.
Return value
None (undefined).
Examples
This example uses JavaScript to delete a table's footer.
HTML
html
<table> <thead> <tr> <th>Name</th> <th>Score</th> </tr> </thead> <tbody> <tr> <td>Bob</td> <td>541</td> </tr> <tr> <td>Jim</td> <td>225</td> </tr> </tbody> <tfoot> <tr> <th>Average</th> <td>383</td> </tr> </tfoot> </table> JavaScript
js
let table = document.querySelector("table"); table.deleteTFoot(); Result
Specifications
| Specification |
|---|
| HTML> # dom-table-deletetfoot-dev> |