November 2001
Intermediate to advanced
936 pages
68h 43m
English
HTMLTableRowElement.deleteCell( ) — delete a cell in a table row
DOM Level 1 HTML
void deleteCell(long index)
throws DOMException;index
The position in the row of the cell to delete.
This method throws a DOMException with a code of
INDEX_SIZE_ERR if index
is less than zero or is greater than or equal to the number of cells
in the row.
This method deletes the cell at the specified position in the table row.