DHTML Methods
Creates an empty TFOOT element in the TABLE.
oTFoot = TABLE.createTFoot ( )
Returns the TFoot element object if successful, or null otherwise.
If a TFOOT already exists for the TABLE, createTFoot returns the existing element. Otherwise, it returns a pointer to the element created.
The following example creates a TFOOT.
myTFoot = document.all.myTable.createTFoot ( )
TABLE