/*
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 Submit button.
This method was added in JavaScript 1.1.
+------------+----------------+------------------------------------------+
click() Simulates a mouse click on the Submit button.
+------------+----------------+------------------------------------------+
focus() Gives the focus to the Submit button. This
method was added in JavaScript 1.1.
+------------+----------------+------------------------------------------+
handleEvent() Invokes the handler for the event specified;
was added in JavaScript 1.2.
+------------+----------------+------------------------------------------+
Property
+------------+----------------+------------------------------------------+
form Returns the entire form the Submit button is in.
+------------+----------------+------------------------------------------+
name Returns the name of the Submit button specified
by the name attribute.
+------------+----------------+------------------------------------------+
type Returns the type of this Submit button,
specified by the type attribute. This property
always returns submit. This property was added
in JavaScript 1.1.
+------------+----------------+------------------------------------------+
value Returns the value of this Submit button,
specified by the value attribute.
+------------+----------------+------------------------------------------+
*/
|