Insert a new empty row in the table. The new row is inserted
immediately before and in the same section as the current
index
th row in the table. If
index
is equal
to the number of rows, the new row is appended. In addition, when the
table is empty the row is inserted into a
TBODY
which is
created and inserted into the table. Note. A table row cannot be empty
according to HTML 4.0 Recommendation.
Returns:
The newly created row.
Parameters:
-
index - The row number where to insert a new row. This index
starts from 0 and is relative to all the rows contained inside the
table, regardless of section parentage.
Throws:
-
DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than the
number of rows or if the index is negative.