Event Handlers/Methods/Properties | Description |
onBlur | Called when the submit button loses focus. |
onClick | Called when the submit button is clicked. |
onFocus | Called when the submit button receives the focus. |
blur() | Removes focus from the submit button. |
click() | Simulates a mouse click on the submit button. |
focus() | Gives the focus to the submit button. |
handleEvent() | Invokes the handler for the event specified and was added in JavaScript 1.2. |
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. |
value | Returns the value of this submit button specified by the VALUE attribute. |