|
NAMEHTML::DOM::Element::Title - A Perl class for representing 'title' elements in an HTML DOM tree VERSIONVersion 0.054 SYNOPSIS use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('title');
$elem->text('The Perl Directory'); # set title
$elem->text; # get title
$elem->tagName;
# etc
DESCRIPTIONThis class implements the 'title element in an HTML::DOM tree. It implements the HTMLTitleElement DOM interface and inherits from HTML::DOM::Element (q.v.). THE METHODThe only method that this class implements itself and does not inherit is:
SEE ALSOHTML::DOM HTML::DOM::Element
|