HTMLTableElement: deleteTFoot() method - Web APIs | MDN (original) (raw)

Baseline

Widely available

The HTMLTableElement.deleteTFoot() method removes the element from a given

.

Syntax

Parameters

None.

Return value

Examples

This example uses JavaScript to delete a table's footer.

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

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

Result

Specifications

Specification
HTML # dom-table-deletetfoot-dev

Browser compatibility