Interface event: load
The load event fires when an HTML document has been loaded completely, including all images, and arrays such as document.images have been initialized. You should run your own initializing scripts onload.  
Interface event: resize
Resize the browser, please!
The resize event fires while the user resizes the browser window. A major resize job causes the event to fire many times over
 
Mouse event: click
The click event fires after one mousedown and one mouseup event have taken place on the same element.
 
Mouse event: mouseover
Hide
The mouseover event fires when the mouse enters the area of the element.  
White text
Form event: submit
Name: 
Age:    
The submit event fires when the user submits the form. It does not fire when a script submits the form (document.forms[0].submit()).