Availability
DOM Level 1 HTML
Synopsis
HTMLElement insertRow(long index)
throws DOMException;
Arguments
index
The position at which the new row is to be inserted.
Returns
An HTMLTableRowElement that represents the newly inserted row.
Throws
This method throws a DOMException with a code of
INDEX_SIZE_ERR if index
is less than zero or greater than the number of rows in the table.
Description
This method creates a new HTMLTableRowElement representing a
<tr> tag and inserts it into the table at
the specified position.
The new row is inserted in the same section and immediately before
the existing row at the position specified by
index. If index
is equal to the number of rows in the table, the new row is appended
to the last section of the table. If the table is initially empty,
the new row is inserted into a new <tbody>
section that is itself inserted into the table.
You can use the convenience method
HTMLTableRowElement.insertCell( ) to add content
to the newly created row.
See Also
HTMLTableSectionElement.insertRow( )
•
Table of Contents
•
Index
•
Reviews
•
Examples
•
Reader Reviews
•
Errata
JavaScript: The Definitive Guide, 4th Edition
By
David Flanagan
Publisher
: O'Reilly
Pub Date
: November 2001
ISBN
: 0-596-00048-0
Pages
: 936
Slots
: 1
This fourth edition of the definitive reference to
JavaScript, a scripting language that can be embedded
directly in web pages, covers the latest version of the
language, JavaScript 1.5, as supported by Netscape 6 and
Internet Explorer 6. The book also provides complete
coverage of the W3C DOM standard (Level 1 and Level 2),
while retaining material on the legacy Level 0 DOM for
backward compatibility.