| 
 
 NAMEHTML::DOM::Element::TextArea - A Perl class for representing 'textarea' elements in an HTML DOM tree VERSIONVersion 0.054 SYNOPSIS  use 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::DOM HTML::DOM::Element HTML::DOM::Element::Form 
 
  |