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.
HTMLTableElement = table.createTFoot()
myfoot = mytable.createTFoot(); //checking: myfoot == mytable.tFoot
© 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