The HTML <body> element is the main display container for the web document. It gets placed inside of the <html> root element. All elements to be displayed in a normal way on your web page go inside of the body element.
global attributes - global core attributes
See: list of global attributes
onblur - when the document loses focus
Value: "functionName()"
onfocus - when the document get focus
Value: "functionName()"
onload - when the document is finished loading
Value: "functionName()"
onunload - when the document is going away
Value: "functionName()"
global event handlers - global event handler attributes
See: list of global event handlers
onafterprint - when the document print process is completed.
Value: "functionName()"
onbeforeprint - when the user requests to print to document
Value: "functionName()"
onbeforeunload - when the document is about to unload
Value: "functionName()"
onerror - when the document fails to load correctly
Value: "functionName()"
onhashchange - when the documents hashed identifier changes.
Value: "functionName()"
onmessage - when the document gets a message
Value: "functionName()"
onoffline - when connction to the network is severed
Value: "functionName()"
ononline - when connction to the network is re-established
Value: "functionName()"
onpopstate - when the user navigates session history
Value: "functionName()"
onredo - when the user chooses to redo an action
Value: "functionName()"
onresize - when the document view is resized
Value: "functionName()"
onstorage - when the storage area receives changes
Value: "functionName()"
onundo - when the user chooses to undo an action
Value: "functionName()"