GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::DOM::Element::Table(3) User Contributed Perl Documentation HTML::DOM::Element::Table(3)

HTML::DOM::Element::Table - A Perl class for representing 'table' elements in an HTML DOM tree

Version 0.058

  use HTML::DOM;
  $doc = HTML::DOM->new;
  $elem = $doc->createElement('table');
  $elem->tHead;
  $elem->tBodies->[0];
  $elem->createTFoot;
  # etc

This class represents 'table' elements in an HTML::DOM tree. It implements the HTMLTableElement DOM interface and inherits from HTML::DOM::Element (q.v.).

In addition to those inherited from HTML::DOM::Element and its superclasses, this class implements the following DOM methods:

Each of these returns the table's corresponding element, if it exists, or an empty list otherwise.
Returns a collection of all table row elements, or a list in list context.
Returns a collection of all 'tbody' elements, or a list in list context.
These get (optionally set) the corresponding HTML attributes.
Returns the table's 'thead' element, creating it if it doesn't exist.
Deletes the table's 'thead' element.
Returns the table's 'tfoot' element, creating it if it doesn't exist.
Does what you would think.
Returns the table's 'caption' element, creating it if it doesn't exist.
Deletes the caption.
Insert a new 'tr' element at the index specified by the first argument, and returns that new row.
Deletes the row at the index specified by the first arg.

HTML::DOM

HTML::DOM::Element

HTML::DOM::Element::Caption

HTML::DOM::Element::TableColumn

HTML::DOM::Element::TableSection

HTML::DOM::Element::TR

HTML::DOM::Element::TableCell

2018-02-02 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.