HTMLTableSectionElement Interface
The HTMLTableSectionElement Interface represents the THEAD, TFOOT and TBODY elements.
IDL Definition
Interface HTMLTableSectionElement : HTMLElement {
attribute DOMString align;
attribute DOMString ch;
attribute DOMString chOff;
attribute DOMString vAlign;
readonly attribute HTMLCollection rows;
HTMLElement insertRow(in long index);
void deleteRow(in long index);
};
Semantic Requirements
- The align attribute specifies the horizontal alignment of data in cells.
- The ch attribute specifies the alignment character for cells in a column.
- The chOff attribute specifies the offset of alignment character.
- The vAlign attribute specifies the vertical alignment of data in cells.
- The rows attribute is a collection of rows in this table section.
Methods
- The insertRow(index) method inserts a row into this section.
- The insertRow(index) method returns the newly created row.
- The deleteRow(index) method deletes a row from this section.
If you have comments or suggestions, email me at mbrady@nist.gov