tr Object
The cells collection returns a collection of all <td> or <th> elements in a table row.
Note: The elements in the collection are sorted as they appear in the source code.
| Property | Description |
|---|---|
| length | Returns the number of <td> or <th> 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 cells collection is supported in all major browsers.
Show the number of cells in the first row:
Alert the content of the first row
Add a cell to a table row through the rows collection
Vertical align the cell content in a table row
Vertical align the cell content in a single cell
Change the content of a table cell
Change the colspan of a table row
tr Object
Your message has been sent to W3Schools.