HTMLTableElement: deleteTFoot() method

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>
    <th>Name</th>
    <th>Score</th>
  </thead>
  <tr>
    <td>Bob</td>
    <td>541</td>
  </tr>
  <tr>
    <td>Jim</td>
    <td>225</td>
  </tr>
  <tfoot>
    <th>Average</th>
    <td>383</td>
  </tfoot>
</table>

JavaScript

js
let table = document.querySelector("table");
table.deleteTFoot();

Result

Specifications

Specification
HTML Standard
# dom-table-deletetfoot-dev

Browser compatibility

BCD tables only load in the browser