Back to Content

HTMLTableElement: tFoot property

files/en-us/web/api/htmltableelement/tfoot/index.md

latest488 B
Original Source

{{APIRef("HTML DOM")}}

The HTMLTableElement.tFoot property represents the {{HTMLElement("tfoot")}} element of a {{HTMLElement("table")}}. Its value will be null if there is no such element.

Value

A {{HTMLElement("tfoot")}} element or null.

Examples

js
if (table.tFoot === myFoot) {
  // …
}

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • The interface implementing this property: {{domxref("HTMLTableElement")}}.