/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+------------+----------------+------------------------------------------+
Type Item Description
+------------+----------------+------------------------------------------+
Method
+------------+----------------+------------------------------------------+
blur() Removes the focus from the text area.
+------------+----------------+------------------------------------------+
focus() Gives the focus to the text area.
+------------+----------------+------------------------------------------+
handleEvent() Invokes the default handler for the specified
event. This method was added in JavaScript 1.2.
+------------+----------------+------------------------------------------+
select() Selects the text in the text area.
+------------+----------------+------------------------------------------+
Property
+------------+----------------+------------------------------------------+
defaultValue Returns the value of this text area defined
between the beginning and ending 'textarea'
tags. This property is not supported by
Opera browsers.
+------------+----------------+------------------------------------------+
form Returns the entire form the text area is in.
+------------+----------------+------------------------------------------+
name Returns the name of this text area,
specified by the name attribute.
+------------+----------------+------------------------------------------+
type Returns the type of this text area. This is
always textarea; it was added in JavaScript 1.1.
+------------+----------------+------------------------------------------+
value Returns the value that is actually displayed
in the text area.
+------------+----------------+------------------------------------------+
*/
|