onabort - this event occurs with interruption of a load of a picture.
onafterupdate - this event occurs with ending transfer of the data.
onbeforeunload - this event occurs before a unloading of page that allows to keep the data.
onbeforeupdate - this event occurs before a unloading of page.
onblur - this event occurs with an exit of a window from focus.
onbounce - this event occurs in an element MARQEE, when the value of property BEHAVIOR = ALTERNATE and contents reaches the end.
onchange - this event occurs with change of contents of object.
onclick - this event occurs when the button of the mouse has clicked on the document.
ondataavailable - this event occurs periodically when the data come from an asynchronous source.
ondatasetchanged - this event occurs with change about the data, for example with application of a filtration of the data.
ondatasetcomplete - this event occurs when all data from a source will be accessible.
ondblclick - this event occurs when the user does double click on the document.
ondragstart - this event occurs when the user begins dragging by the mouse.
onerror - this event occurs with a error by transfer of the data.
onerrorupdate - this event occurs with a cancellation of change of the data by event ONBEFOREUPDATE, replacing event ONAFTERUPDATE.
onfilterchange - this event occurs with change of a condition of the static filter or with ending transition dynamic.
onfilterevent - this event occurs when the transition of the filter is completed.
onfinish - this event occurs with ending a cycle in the tag MARQUEE.
onfocus - this event occurs when the object becomes active.
onhelp - this event occurs with pressing by the user of keys F1 or HELP.
onkeydown - this event occurs with pressing a key of the keyboard.
onkeypress - this event occurs with pressing a key of the keyboard and proceeds while the key is pressed.
onkeyup - this event occurs when the user releases a key of the keyboard.
onload - this event occurs with a complete load of object.
onmousedown - this event occurs when the user presses the left button of the mouse.
onmousemove - this event occurs when the user moves the mouse.
onmouseout - this event occurs when the cursor of the mouse leaves object.
onmouseover - this event occurs when the cursor of the mouse occurs on object.
onmouseup - this event occurs when the user releases the button of the mouse.
onreadystatechange - this event occurs with change of property REDYSTATE.
onreset - this event occurs with clearing the form.
onresize - this event occurs with change by the user of the sizes of a window.
onrowenter - this event occurs with change of the data in a current line and when the new data are accessible.
onrowexit - this event occurs before change of the data in a current line by a source.
onscroll - this event occurs with scrolling a window by the user.
onselect - this event occurs with change of current selection.
onselectstart - this event occurs when the user begins selection in the document.
onstart - this event occurs with the beginning of moving of the text of object MARQUEE.
onsubmit - this event occurs with sending the form on the server or pressing of the button SUBMIT.
onunload - this event occurs before a unloading of page.
It is an example of processing of event of object DEV1 in a context of use of function of processing of event. The name of function is made of the identifier of object and name of event. Click item and the red text will be inserted into the text of the script.
<H1 ID=dev1 >object</H1>
...
<SCRIPT LANGUAGE=VBS>
Function dev1_?()
...
end function
</SCRIPT>
It is an example of processing of event of object DEV1 in a context of use of function of processing of event. The name of event and name of function is set in object Click item and the red text will be inserted into the text of the script.
<H1 LANGUAGE=VBS ?=DEV1() >object</H1>
...
<SCRIPT LANGUAGE=VBSCRIPT>
Function dev1()
...
end function
</SCRIPT>
It is an example of processing of event of object in a context of use and processing of event by codes in the object. Click item and the red text will be inserted into the text of object.
<H1 LANGUAGE=VBS ?="operator VBS:operator VBS: ..." >object</H1>
It is an example of processing of event of object DEV1 in a context of use of the tag of processing of event. The identifier of object and name of event is set in the tag - processing. Click item and the red text will be inserted into the chosen place.
<H1 ID=DEV1 >object</H1>
...
<SCRIPT LANGUAGE=VBS FOR=DEV1 EVENT=?>
...
</SCRIPT>