Web::DOM::HTMLTableSectionElement
The DOM HTMLTableSectionElement
object
DESCRIPTION
The Web::DOM::HTMLTableSectionElement
class implements the DOM HTMLTableSectionElement
interface.
The class is used by the HTML tbody
,
thead
,
and tfoot
elements.
METHODS
In addition to the methods available for classes Web::DOM::Element and Web::DOM::HTMLElement, the following methods are available:
$el->delete_row ($index)
-
Return the table row (
tr
element) with the specified index in the table row group. [HTML] $tr = $el->insert_row ($index)
-
Insert a table row (
tr
element) at the specified postion in the table row group and return the element. [HTML] $col = $el->rows
-
Return the Web::DOM::HTMLCollection containing the rows (
tr
elements) of the table row group. [HTML]
Additionally,
the following obsolete methods are available: align
,
ch
,
ch_off
,
and valign
. [HTML]
SPECIFICATION
- HTML
-
HTML Standard
<http://www.whatwg.org/specs/web-apps/current-work/#the-tbody-element>
.
SEE ALSO
AUTHOR
Wakaba <wakaba@suikawiki.org>.
LICENSE
Copyright 2013 Wakaba <wakaba@suikawiki.org>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.