/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+-----------+----------+----------------------------------------------------+
Type Item Description
+-------- --+----------+----------------------------------------------------+
Method
+-----------+----------+----------------------------------------------------+
blur() Removes focus from the button. This method was added in
JavaScript 1.1.
+-----------+----------+----------------------------------------------------+
click() Invokes a click event for that button.
+-----------+----------+----------------------------------------------------+
focus() Applies focus to a button. This method was added in
JavaScript 1.1.
+-----------+----------+----------------------------------------------------+
handleEvent()Passes an event to the appropriate event handler
associated with a button. This method was added in
JavaScript 1.2.
+-----------+----------+----------------------------------------------------+
Property
+-----------+----------+----------------------------------------------------+
form Returns the Form object of which the button is a member.
+-----------+----------+----------------------------------------------------+
name Returns the string that is specified in the name
attribute of the HTML <input> tag.
+-----------+----------+----------------------------------------------------+
type Returns the string that is specified in the type
attribute of the HTML <input> tag. This string is
always button for the Button object. This property was
added in JavaScript 1.1.
+-----------+----------+----------------------------------------------------+
value Returns the string that appears in the graphical
representation of a button.
+-----------+----------+----------------------------------------------------+
*/
|