|
NAMERose::HTML::Anchor - Object representation of an HTML anchor. SYNOPSIS $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;
...
DESCRIPTIONRose::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. HTML ATTRIBUTESValid 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
CONSTRUCTOR
OBJECT METHODS
AUTHORJohn C. Siracusa (siracusa@gmail.com) LICENSECopyright (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.
|