An Enhanced Ajax Approach to Active Client Pages - The DOM Table (
Page 2 of 5 )
Table Object Collections
|
cells[]
|
Returns an array containing each cell in a table.
|
|
rows[]
|
Returns an array containing each row in a table.
|
Table Object Properties
|
id
|
Sets or returns the id of a table.
|
Table Object Methods
|
insertRow()
|
Inserts a new row into a table.
|
|
deleteRow()
|
Deletes a row from a table.
|
TableRow Object
TableRow Object Collections
|
cells[]
|
Returns an array containing each cell in the table row.
|
TableRow Object Properties
|
id
|
Sets or returns the id of a table row.
|
|
innerHTML
|
Sets or returns the HTML between the start and end tags of a table row.
|
|
rowIndex
|
Returns the position of a row in the table's rows collection.
|
TableRow Object Methods
|
insertCell()
|
Inserts a cell into a table row.
|
|
deleteCell()
|
Deletes a cell into a table row.
|
TableCell Object
TableCell Object Properties
|
cellIndex
|
Returns the position of a cell in the cell's collection of a row.
|
|
id
|
Sets or returns the id of a table cell.
|
|
innerHTML
|
Sets or returns the HTML between the start and end tags of a table cell.
|