Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The insertRow() method of the HTMLTableSectionElement interface inserts a new row (<tr>) in the given table sectioning element (<thead>, <tfoot>, or <tbody>), then returns a reference to this new row.
Note: insertRow() inserts the row directly into the section. The row does not need to be appended separately as would be the case if Document.createElement() had been used to create the new <tr> element.
The row index of the new row. If index is -1 or equal to the number of rows, the row is appended as the last row. If index is omitted it defaults to -1.
An HTMLTableRowElement that references the new row.
Thrown if index is greater than the number of rows, or smaller than -1.
In this example, two buttons allow you to add and remove rows from the table body section; it also updates an <output> element with the number of rows currently in the table.
| HTML # dom-tbody-insertrow |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Oct 31, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.