Following events usually occurs when a user is interacting with a form <input> supports the following events:-
Sr.no | Event name | Description |
1 | onChange | This event is triggered when a value in the control changes |
2 | OnClick | This event is triggered when mouse button is clicked on the controls |
3 | onDblClick | This event is triggered when mouse button is double clicked on the button |
4 | onBlur | Triggered when a control loses the focus |
5 | onMouseDown | This event is triggered when mouse button is pressed in a control |
6 | onMouseUp | Triggered when mouse button is released in the control |
7 | onFocus | This event is triggered when a control receives a focus |
8 | onMouseOver | Triggered when the mouse is over the controls |
9 | onMouseMove | Triggered when the mouse moves inside the control |
10 | onKeyDown | Triggered when mouse is over the control |
11 | onKeyUp | Triggered when a key is pressed in a control |
12 | onSelect | Triggered when a key is released in a control |
0 Comments