NAME
Rose::HTML::Label - Object representation of the "label" HTML tag.
SYNOPSIS
my $label = Rose::HTML::Label->new(for => 'name',
contents => 'Name');
# <label for="name">Name</label>
print $i->html;
$i->accesskey('n');
# <label accesskey="n" for="name">Name</label>
print $i->xhtml;
...
DESCRIPTION
Rose::HTML::Label is an object representation of the <label> HTML tag. Yes, there really is a <label> tag in both HTML 4.01 and XHTML 1.0. Look it up.
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 ATTRIBUTES
Valid attributes:
accesskey
class
dir
for
id
lang
onblur
onclick
ondblclick
onfocus
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup
style
title
xml:lang
AUTHOR
John C. Siracusa (siracusa@gmail.com)
LICENSE
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.