createTHead method
Creates an empty tHead element in the table.
![]() |
Syntax
var retval = table.createTHead();Parameters
This method has no parameters.
Return value
Type: Object
Returns the tHead element object if successful, ornull otherwise. Standards information
- Document Object Model (DOM) Level 2 HTML Specification, Section 1.6.5
Remarks
If a tHead already exists, createTHead returns the existing element. Otherwise, it returns a pointer to the element created.
Examples
This example uses the createTHead method to create a table header.
myTHead = document.all.myTable.createTHead()
See also
Show:
