web api interface
HTMLTableRowElement
The HTMLTableRowElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.
Instance properties
Inherits properties from its parent, HTMLElement.
cellsRead only- : Returns a live
HTMLCollectioncontaining the cells in the row. TheHTMLCollectionis live and is automatically updated when cells are added or removed.
- : Returns a live
rowIndexRead only- : Returns a number that gives the logical position of the row within the entire table. If the row is not part of a table, returns
-1.
- : Returns a number that gives the logical position of the row within the entire table. If the row is not part of a table, returns
sectionRowIndexRead only- : Returns a number that gives the logical position of the row within the table section it belongs to. If the row is not part of a section, returns
-1.
- : Returns a number that gives the logical position of the row within the table section it belongs to. If the row is not part of a section, returns
Instance methods
Inherits methods from its parent, HTMLElement.
deleteCell()- : Removes the cell corresponding to
index. Ifindexis-1, the last cell of the row is removed. Ifindexis less than-1or greater than the amount of cells in the collection, aDOMExceptionwith the valueIndexSizeErroris raised.
- : Removes the cell corresponding to
insertCell()- : Returns an
HTMLTableCellElementrepresenting a new cell of the row. The cell is inserted in the collection of cells immediately before the givenindexposition in the row. Ifindexis-1, the new cell is appended to the collection. Ifindexis less than-1or greater than the number of cells in the collection, aDOMExceptionwith the valueIndexSizeErroris raised.
- : Returns an
Deprecated properties
[!WARNING] These properties have been deprecated and should no longer be used. They are documented primarily to help understand older code bases.
alignDeprecated- : A string containing an enumerated value reflecting the
alignattribute. It indicates the alignment of the element’s contents to the surrounding context. The possible values are"left","right", and"center".
- : A string containing an enumerated value reflecting the
bgColorDeprecated- : A string containing the background color of the cells. It reflects the obsolete
bgColorattribute.
- : A string containing the background color of the cells. It reflects the obsolete
chDeprecated- : A string containing one single character. This character is the one to align all the cells of a column on. It reflects the
charand defaults to the decimal points associated with the language, e.g.,'.'for English, or','for French. This property was optional and was not very well supported.
- : A string containing one single character. This character is the one to align all the cells of a column on. It reflects the
chOffDeprecated- : A string containing an integer indicating how many characters must be left at the right (for left-to-right scripts; or at the left for right-to-left scripts) of the character defined by
HTMLTableRowElement.ch. This property was optional and was not very well supported.
- : A string containing an integer indicating how many characters must be left at the right (for left-to-right scripts; or at the left for right-to-left scripts) of the character defined by
vAlignDeprecated- : A string representing an enumerated value indicating how the content of the cell must be vertically aligned. It reflects the
valignattribute and can have one of the following values:"top","middle","bottom", or"baseline".
- : A string representing an enumerated value indicating how the content of the cell must be vertically aligned. It reflects the
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The HTML element implementing this interface:
<tr>.