W3cubDocs

/DOM

HTMLTableElement.createTFoot

The HTMLTableElement.createTFoot() method returns the <tfoot> element associated with the table, of type HTMLTableSectionElement. If there is no footer for this table, this methods creates it, then returns it.

Syntax

HTMLTableElement = table.createTFoot()

Example

myfoot = mytable.createTFoot(); 
//checking: myfoot == mytable.tFoot

Specification

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement/createTFoot