|
NAMEHTML::DOM::Element::A - A Perl class for representing 'a' elements in an HTML DOM tree VERSIONVersion 0.054 SYNOPSIS use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('a');
$elem->href('about:blank'); # set attribute
$elem->target; # get attribute
$elem->tagName;
# etc
$elem->focus();
$elem->blur();
DESCRIPTIONThis class implements 'a' elements in HTML::DOM trees. It implements the HTMLAnchorElement 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:
And HTML::DOM::Node's "trigger_event" method is overridden to call the default event handler for links when the DOMActivate event occurs. SEE ALSOHTML::DOM HTML::DOM::Element
|