Common Events
Standard Events
onClick - Fires
when the user clicks on an object, such as a button.
onDblclick -
Fires when the user double clicks on an object, such as a button.
onMouseover
- Fires when the user moves the mouse pointer over an object such
as a button or a hyperlink.
onMouseout -
Fires when the user moves the mouse pointer off of an object such
as a button or a hyperlink.
Document Events
onLoad - Fires
when the page has completely finished loading into the browser.
Form Events
onBlur - Fires
when the user either tabs to the next textbox or uses the mouse
and clicks on another object.
onFocus - Fires
when the user either tabs into the textbox or uses the mouse and
clicks on this object.
onReset - Fires
when the user clicks on the reset button.
onSubmit - Fires
when the user clicks on the reset button. This can be used
for data validation and returning a value of "false" will cause
the action to be canceled resulting in the form NOT being submitted.
|