The tr object represents an HTML table row.
For each <tr> tag in an HTML document, a tr object is created.
Note: The TR object can also use the properties/methods of:
W3C: W3C Standard.
| Collection | Description | W3C |
|---|---|---|
| cells | Returns a collection of all <td> or <th> elements in a table row | Yes |
| Property | Description | W3C |
|---|---|---|
| align | Deprecated. Sets or returns the horizontal alignment of the content within a table row. Use style.textAlign instead | D |
| bgColor | Deprecated. Sets or returns the background color of a table row. Use style.backgroundColor instead | D |
| ch | Sets or returns an alignment character for cells in a table row | Yes |
| chOff | Sets or returns the horizontal offset of the ch property | Yes |
| height | Deprecated. Sets or returns the height of a table row. Use style.height instead | D |
| rowIndex | Returns the position of a row in the rows collection of a table | Yes |
| sectionRowIndex | Returns the position of a row in the rows collection of a tbody, thead, or tfoot | Yes |
| vAlign | Sets or returns the vertical alignment of the content within a table row | Yes |
| Method | Description | W3C |
|---|---|---|
| deleteCell() | Deletes a cell from the current table row | Yes |
| insertCell() | Inserts a cell into the current table row | Yes |
The TR object also supports the standard properties and events.
Your message has been sent to W3Schools.