Introduction
Description | Attributes | Value | Description |
|---|---|---|
| onload | Script | If XHTML Documents start loading then script start running. |
| onunload | Script | If XHTML Documents start unloading then script start running. |
Description | Attributes | Value | Description |
|---|---|---|
| onkeydown | Script | Get into action when pressing a key. |
| onkeypress | Script | Get into action when press a key. |
| onkeyup | Script | Get into action when release a key. |
Description | Attributes | Value | Description |
|---|---|---|
| onchange | Script | If the element get any changes then the script will runs. |
| onreset | Script | If the form get reset then script will execute. |
| onsubmit | Script | When the form get submitted then script will execute. |
| onblur | Script | When the element get looses focus then script will executs. |
| onselect | Script | When the form get selected then script will execute. |
| onfocus | Script | When the form get focused then script will runs. |
Description | Attributes | Value | Description |
|---|---|---|
| onclick | Script | Gets into action when clicked on the element. |
| ondblclick | Script | Get into action when double clicked on the element. |
| onmousemove | Script | Get into action when the mouse moved on the element. |
| onmousedown | Script | Get into action when the mouse button pressed down. |
| onmouseover | Script | Get into action when the mouse moved on an element. |
| onmouseout | Script | Get into action when the mouse moved out of an element. |
| onmouseup | Script | Get into action when the mouse released over an element. |
Key Points