HTMLTableElement: createTFoot() method - Web APIs | MDN (original) (raw)
Baseline
Widely available
The createTFoot()
method ofHTMLTableElement objects returns the element associated with a given
**Note:**If no footer exists, createTFoot()
inserts a new footer directly into the table. The footer does not need to be added separately as would be the case if Document.createElement() had been used to create the new <tfoot>
element.
Syntax
Parameters
None.
Return value
Examples
let myFoot = myTable.createTFoot();
// Now this should be true: myFoot === myTable.tFoot
Specifications
Specification |
---|
HTML # dom-table-createtfoot-dev |