DHTML Methods
Creates an empty THEAD element in the TABLE.
oTHead = TABLE.createTHead ( )
Returns the THEAD element object if successful, or null otherwise.
If a THEAD already exists, createTHead returns the existing element. Otherwise, it returns a pointer to the element created.
The following example creates a THEAD.
myTHead = document.all.myTable.createTHead ( )
TABLE