|
NAMEHTML::DOM::Element::Link - A Perl class for representing 'link' elements in an HTML DOM tree VERSIONVersion 0.054 SYNOPSIS use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('link');
$elem->charset('iso-8859-1'); # set attribute
$elem->href; # get attribute
$elem->tagName;
# etc
DESCRIPTIONThis class implements 'link' elements in an HTML::DOM tree. It implements the HTMLLinkElement DOM interface and inherits from HTML::DOM::Element (q.v.). METHODSIn addition to those inherited from HTML::DOM::Element and its superclasses, this class implements the following DOM methods:
SEE ALSOHTML::DOM HTML::DOM::Element
|