DHTML Methods
Creates an empty CAPTION element in the TABLE.
oCaption = TABLE.createCaption ( )
CAPTION object. If a CAPTION already exists, createCaption ( ) returns the existing element; otherwise, it returns a pointer to the element created. If the method fails, it returns null.
The following example creates a CAPTION.
myCaption = document.all.myTable.createCaption ( )
TABLE