The HTMLTableRowElement.insertCell()
method inserts a new cell into a table row and returns a reference to the cell.
var cell = HTMLTableRowElement.insertCell(index = -1);
HTMLTableRowElement
is a reference to an HTML table row element.index
is the cell index of the new cell.cell
, is assigned a reference to the new cell.index
is -1 or equal to the number of cells, the cell is appended as the last cell in the row. If index
is greater than the number of cells, an IndexSizeError exception will result. If index is omitted it defaults to -1.<table> <tr id="row0"> <td>Original cell</td> </tr> </table> <script> function addCell(tableRowID) { // Get a reference to the tableRow var rowRef = document.getElementById(tableRowID); // Insert a cell in the row at cell index 0 var newCell = rowRef.insertCell(0); // Append a text node to the cell var newText = document.createTextNode('New cell') newCell.appendChild(newText); } // Call addCell() with the ID of a table row addCell('row0'); </script>
To be valid in an HTML document, a TR must have at least one TD element.
Note that insertCell
inserts the cell directly into the table and returns a reference to the new cell. The cell does not need to be appended separately as would be the case if document.createElement()
had been used to create the new TD element.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLTableRowElement.insertCell()' in that specification. | Living Standard | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLTableRowElement.insertCell()' in that specification. | Obsolete | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 1 | Yes | Yes | Yes |
Index parameter is optional | Yes | Yes | 20 | Yes | Yes | Yes |
Support for -1 as an index argument |
Yes | Yes | 20 | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | Yes |
Index parameter is optional | Yes | Yes | Yes | 20 | Yes | Yes | Yes |
Support for -1 as an index argument |
Yes | Yes | Yes | 20 | Yes | Yes | Yes |
HTMLTableElement.insertRow()
HTMLTableCellElement
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement/insertCell