'createTFoot()' Syntax, Parameters and Note : createTFoot « Javascript Methods « JavaScript Reference

'createTFoot()' Syntax, Parameters and Note

Note:

Create empty <tfoot> rows for the table.
    
Syntax:
    
document.getElementById("tableID").createTFoot()
document.all.tableID.createTFoot() // IE only 
document.getElementById("tableID").createTHead()
document.all.tableID.createTHead() // IE only

    

      
      








Related examples in the same category

1.'createTFoot()' Example
2.'createTFoot()' is applied to