HTMLTableElement: tFoot property

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 tFoot property of the HTMLTableElement interface represents the first <tfoot> element child of the given <table>, or null if no such element exists.

Value

An HTMLTableSectionElement (which is always a tfoot) or null.

This property can be assigned, which causes the existing first <tfoot> element child, if any, to be removed, and the given value, if it is not null, to be inserted as the last child. Therefore, setting null has the same effect as calling deleteTFoot(). If the assigned value is not an HTMLTableSectionElement or null, a TypeError is thrown; otherwise, if it is not a <tfoot> element or null, a HierarchyRequestError DOMException is thrown.

Examples

js
if (table.tFoot) {
  // Do something with the tfoot
}

Specifications

Specification
HTML
# dom-table-tfoot-dev

Browser compatibility

See also