Rose::HTML::Anchor - Object representation of an HTML anchor.
$a = Rose::HTML::Anchor->new(href => 'apple.html', link => 'Apple'); print $a->html; $a->link(Rose::HTML::Image->new(src => 'a.gif')); print $a->html; ...
Rose::HTML::Anchor is an object representation of an HTML anchor, or "a" tag.
This class inherits from, and follows the conventions of, Rose::HTML::Object. Inherited methods that are not overridden will not be documented a second time here. See the Rose::HTML::Object documentation for more information.
Valid attributes:
accesskey charset class coords dir href hreflang id lang name onblur onclick ondblclick onfocus onkeydown onkeypress onkeyup onmousedown onmousemove onmouseout onmouseover onmouseup rel rev shape style tabindex title type xml:lang
Constructs a new Rose::HTML::Anchor object based on PARAMS, where PARAMS are name/value pairs. Any object method is a valid parameter name.
This is an alias for the children method.
John C. Siracusa (siracusa@gmail.com)
Copyright (c) 2010 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.