The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
deleteCell method
Removes the specified cell (td) from the table row, as well as from the cells collection.
![]() |
Syntax
var retval = tr.deleteCell(index);Parameters
- index [in, optional]
-
Type: Integer
Integer that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
- Document Object Model (DOM) Level 2 HTML Specification, Section 1.6.5
Examples
This example uses the deleteCell method to delete the last cell in the first row of the table.
document.all.myTable.rows[0].deleteCell()
See also
- tr
- Reference
- deleteRow
- insertCell
Show:
