|
NAMEHTML::DOM::Element::Head - A Perl class for representing 'head' elements in an HTML DOM tree VERSIONVersion 0.054 SYNOPSIS use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('html');
$elem->profile('http://profiles.com'); # set
$elem->profile; # get
$elem->tagName;
# etc
DESCRIPTIONThis class implements the 'head' element in an HTML::DOM tree. It implements the HTMLHeadElement 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
|