Table Object
The rows collection returns a collection of all <tr> elements in a table.
Note: The elements in the collection are sorted as they appear in the source code.
| Property | Description |
|---|---|
| length | Returns the number of <tr> elements in the collection |
| Method | Description |
|---|---|
| [name_or_index] | An integer that specifies the element to retrieve (starts at 0) |
| item(name_or_index) | Returns the element from the collection with the specified index/name/id |
| namedItem(name) | Returns the element from the collection with the specified name (name or id attribute) |
![]()
The rows collection is supported in all major browsers.
Show the number of rows in the table:
Alert the content of the first row
Add a cell to a table row through the rows collection
Align the cell content in a table row
Vertical align the cell content in a table row
Align the cell content in a single cell
Vertical align the cell content in a single cell
Change the content of a table cell
Change the colspan of a table row
Table Object
Your message has been sent to W3Schools.