|
NAMEHTML::DOM::Element::TextArea - A Perl class for representing 'textarea' elements in an HTML DOM treeVERSIONVersion 0.054SYNOPSISuse HTML::DOM; $doc = HTML::DOM->new; $elem = $doc->createElement('textarea'); $elem->focus(); $elem->blur(); # etc. $elem->value('some text') # set attribute $elem->rows; # get attribute $elem->tagName; # etc. DESCRIPTIONThis class implements 'textarea' elements in an HTML::DOM tree. It implements the HTMLTextAreaElement 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:
In addition, the following methods are provided for compatibility with WWW::Mechanize:
SEE ALSOHTML::DOMHTML::DOM::Element HTML::DOM::Element::Form
Visit the GSP FreeBSD Man Page Interface. |