Document Element |
oncopy | The script to be run when the user copies the content of an element. |
<!-- Executes go() function -->
<q oncopy="go()">Quotation Text</q>
|
oncut | The script to be run when the user cuts the content of an element. |
<!-- Executes go() function -->
<q oncut="go()">Quotation Text</q>
|
onpaste | The script to be run when the user pastes some content into an element. |
<!-- Executes go() function -->
<q onpaste="go()">Quotation Text</q>
|
Drag and Drop |
ondrag | The script to be run when an element is dragged. |
<!-- Executes go() function -->
<q ondrag="go()">Quotation Text</q>
|
ondragend | The script to be run when an element has stopped being dragged. |
<!-- Executes go() function -->
<q ondragend="go()">Quotation Text</q>
|
ondragenter | The script to be run when an element has been dragged to a valid drop target. |
<!-- Executes go() function -->
<q ondragenter="go()">Quotation Text</q>
|
ondragleave | The script to be run when an element leaves a valid drop target. |
<!-- Executes go() function -->
<q ondragleave="go()">Quotation Text</q>
|
ondragover | The script to be run when an element is being dragged over a valid drop target. |
<!-- Executes go() function -->
<q ondragover="go()">Quotation Text</q>
|
ondragstart | The script to be run at the start of a drag operation. |
<!-- Executes go() function -->
<q ondragstart="go()">Quotation Text</q>
|
ondrop | The script to be run when a dragged element is being dropped. |
<!-- Executes go() function -->
<q ondrop="go()">Quotation Text</q>
|
Form |
onblur | The script to be run when the element loses focus. |
<!-- Executes go() function -->
<q onblur="go()">Quotation Text</q>
|
onchange | The script to be run when object changed and attempt to leave field. |
<!-- Executes go() function -->
<q onchange="go()">Quotation Text</q>
|
oncontextmenu | The script to be run when a context menu is triggered. |
<!-- Executes go() function -->
<q oncontextmenu="go()">Quotation Text</q>
|
onfocus | The script to be run when the element gets focus. |
<!-- Executes go() function -->
<q onfocus="go()">Quotation Text</q>
|
oninput | The script to be run when an element gets user input. |
<!-- Executes go() function -->
<q oninput="go()">Quotation Text</q>
|
oninvalid | The script to be run when an element is invalid. |
<!-- Executes go() function -->
<q oninvalid="go()">Quotation Text</q>
|
onreset | The script to be run when a dragged element is being dropped. |
<!-- Executes go() function -->
<q onreset="go()">Quotation Text</q>
|
onselect | The script to be run when some or all of the contents of an object are selected. |
<!-- Executes go() function -->
<q onselect="go()">Quotation Text</q>
|
onsubmit | The script to be run when a form is submitted. |
<!-- Executes go() function -->
<q onsubmit="go()">Quotation Text</q>
|
Keyboard |
onkeydown | The script to be run when an element is in focus and keyboard key is pressed down. |
<!-- Executes go() function -->
<q onkeydown="go()">Quotation Text</q>
|
onkeypress | The script to be run when an element is in focus and keyboard key is pressed down and released. |
<!-- Executes go() function -->
<q onkeypress="go()">Quotation Text</q>
|
onkeyup | The script to be run when an element is in focus and keyboard key is released. |
<!-- Executes go() function -->
<q onkeyup="go()">Quotation Text</q>
|
Media |
onabort | The script code to be run on abort. |
<!-- Executes go() function -->
<q onabort="go()">Quotation Text</q>
|
oncanplay | The script to be run when a file has buffered enough so it is ready to start playing. |
<!-- Executes go() function -->
<q oncanplay="go()">Quotation Text</q>
|
oncanplaythrough | The script to be run when a file can be played all the way to the end without further need of buffering. |
<!-- Executes go() function -->
<q oncanplaythrough="go()">Quotation Text</q>
|
oncuechange | The script to be run when the cue changes when using the track element. |
<!-- Executes go() function -->
<q oncuechange="go()">Quotation Text</q>
|
ondurationchange | The script to be run when the length of the media is changed. |
<!-- Executes go() function -->
<q ondurationchange="go()">Quotation Text</q>
|
onemptied | The script to be run when a media resource element suddenly becomes empty, usually due to an error. |
<!-- Executes go() function -->
<q onemptied="go()">Quotation Text</q>
|
onended | The script to be run when the media has reach the end. |
<!-- Executes go() function -->
<q onended="go()">Quotation Text</q>
|
onloadeddata | The script to be run when media data is loaded and playback can start. |
<!-- Executes go() function -->
<q onloadeddata="go()">Quotation Text</q>
|
onloadedmetadata | The script to be run when metadata has been loaded. |
<!-- Executes go() function -->
<q onloadedmetadata="go()">Quotation Text</q>
|
onloadstart | The script to be run whenthe media resource has started loading. |
<!-- Executes go() function -->
<q onloadstart="go()">Quotation Text</q>
|
onpause | The script to be run when the media resource has been paused. |
<!-- Executes go() function -->
<q onpause="go()">Quotation Text</q>
|
onplay | The script to be run when the media resource starts playback. |
<!-- Executes go() function -->
<q onplay="go()">Quotation Text</q>
|
onplaying | The script to be run when when playback has already begun. |
<!-- Executes go() function -->
<q onplaying="go()">Quotation Text</q>
|
onprogress | The script to be run when the browser is fetching the media data. |
<!-- Executes go() function -->
<q onprogress="go()">Quotation Text</q>
|
onratechange | The script to be run when the playback rate changes. |
<!-- Executes go() function -->
<q onratechange="go()">Quotation Text</q>
|
onseeked | The script to be run when the seeking attribute is set to false indicating that seeking has finished. |
<!-- Executes go() function -->
<q onseeked="go()">Quotation Text</q>
|
onseeking | The script to be run when the seeking attribute is set to true indicating that seeking is currently active. |
<!-- Executes go() function -->
<q onseeking="go()">Quotation Text</q>
|
onstalled | The script to be run when the browser is unable to continue fetching media data. |
<!-- Executes go() function -->
<q onstalled="go()">Quotation Text</q>
|
onsuspend | The script to be run when media data has stopped before being completely loaded. |
<!-- Executes go() function -->
<q onsuspend="go()">Quotation Text</q>
|
ontimeupdate | The script to be run when the media resources current playback position has changed. |
<!-- Executes go() function -->
<q ontimeupdate="go()">Quotation Text</q>
|
onvolumechange | The script to be run when the volume has changed or been muted. |
<!-- Executes go() function -->
<q onvolumechange="go()">Quotation Text</q>
|
onwaiting | The script to be run when the media resource has paused but is expected to resume. |
<!-- Executes go() function -->
<q onwaiting="go()">Quotation Text</q>
|
Mouse |
onclick | The script to be run when when a mouse is clicked on an element. |
<!-- Executes go() function -->
<q onclick="go()">Quotation Text</q>
|
ondblclick | The script to be run when a mouse is double clicked on an element. |
<!-- Executes go() function -->
<q ondblclick="go()">Quotation Text</q>
|
onmousedown | The script to be run when he mouse button is pressed down while the cursor is over an element. |
<!-- Executes go() function -->
<q onmousedown="go()">Quotation Text</q>
|
onmousemove | The script to be run when the mouse button is moved. |
<!-- Executes go() function -->
<q onmousemove="go()">Quotation Text</q>
|
onmouseout | The script to be run when the mouse cursor moves off an element. |
<!-- Executes go() function -->
<q onmouseout="go()">Quotation Text</q>
|
onmouseover | The script to be run when the mouse cursor moves over an element. |
<!-- Executes go() function -->
<q onmouseover="go()">Quotation Text</q>
|
onmouseup | The script to be run when the mouse button is released while the cursor is over the element. |
<!-- Executes go() function -->
<q onmouseup="go()">Quotation Text</q>
|
onwheel | The script to be run when the mouse wheel rolls up or down over an element. |
<!-- Executes go() function -->
<q onwheel="go()">Quotation Text</q>
|
Scroll |
onscroll | The script code to be run when the scrollbar of an element is being scrolled. |
<!-- Executes go() function -->
<q onscroll="go()">Quotation Text</q>
|
Window - NONE |