HTML::DOM::Element::A - A Perl class for representing 'a' elements in an HTML DOM tree
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();
This class implements 'a' elements in HTML::DOM trees. It implements the HTMLAnchorElement DOM interface and inherits from the HTML::DOM::Element manpage (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 corresponding HTML attribute. If you pass an argument, it will become the new value of the attribute, and the old value will be returned.
Each of these triggers the corresponding event.
And the HTML::DOM::Node manpage's trigger_event method is overridden to call the
default event handler for links when the DOMActivate event occurs.