HTML Events

HTML Event Attributes

Window Event Attributes

Events triggered for the window object (applies to the <body> tag):
AttributeValueDescription
onafterprintNewscriptScript to be run after the document is printed
onbeforeprintNewscriptScript to be run before the document is printed
onbeforeunloadNewscriptScript to be run before the document is unloaded
onerrorNewscriptScript to be run when an error occur
onhaschangeNewscriptScript to be run when the document has changed
onloadscriptFires after the page is finished loading
onmessageNewscriptScript to be run when the message is triggered
onofflineNewscriptScript to be run when the document goes offline
ononlineNewscriptScript to be run when the document comes online
onpagehideNewscriptScript to be run when the window is hidden
onpageshowNewscriptScript to be run when the window becomes visible
onpopstateNewscriptScript to be run when the window's history changes
onredoNewscriptScript to be run when the document performs a redo
onresizeNewscriptFires when the browser window is resized
onstorageNewscriptScript to be run when a Web Storage area is updated
onundoNewscriptScript to be run when the document performs an undo
onunloadscriptFires once a page has unloaded (or the browser window has been closed)


Form Events

Events triggered by actions inside a HTML form (applies to almost all HTML elements, but is most used in form elements):
AttributeValueDescription
onblurscript Fires the moment that the element loses focus
onchangescriptFires the moment when the value of the element is changed
oncontextmenuNewscript Script to be run when a context menu is triggered
onfocusscript Fires the moment when the element gets focus
onformchangeNewscript Script to be run when a form changes
onforminputNewscript Script to be run when a form gets user input
oninputNewscript Script to be run when an element gets user input
oninvalidNewscript Script to be run when an element is invalid
onresetscript Fires when the Reset button in a form is clicked
Not supported in HTML5
onselectscript Fires after some text has been selected in an element
onsubmitscriptFires when a form is submitted


Keyboard Events

AttributeValueDescription
onkeydownscript Fires when a user is pressing a key
onkeypressscript Fires when a user presses a key
onkeyupscript Fires when a user releases a key


Mouse Events

Events triggered by a mouse, or similar user actions:
AttributeValueDescription
onclickscript Fires on a mouse click on the element
ondblclickscript Fires on a mouse double-click on the element
ondragNewscript Script to be run when an element is dragged
ondragendNewscript Script to be run at the end of a drag operation
ondragenterNewscript Script to be run when an element has been dragged to a valid drop target
ondragleaveNewscript Script to be run when an element leaves a valid drop target
ondragoverNewscript Script to be run when an element is being dragged over a valid drop target
ondragstartNewscript Script to be run at the start of a drag operation
ondropNewscript Script to be run when dragged element is being dropped
onmousedownscript Fires when a mouse button is pressed down on an element
onmousemovescript Fires when the mouse pointer moves over an element
onmouseoutscriptFires when the mouse pointer moves out of an element
onmouseoverscriptFires when the mouse pointer moves over an element
onmouseupscript Fires when a mouse button is released over an element
onmousewheelNewscript Script to be run when the mouse wheel is being rotated
onscrollNewscript Script to be run when an element's scrollbar is being scrolled


Media Events

Events triggered by medias like videos, images and audio (applies to all HTML elements, but is most common in media elements, like <audio>, <embed>, <img>, <object>, and <video>):
AttributeValueDescription
onabortscript Script to be run on abort
oncanplayNewscriptScript to be run when a file is ready to start playing (when it has buffered enough to begin)
oncanplaythroughNewscriptScript to be run when a file can be played all the way to the end without pausing for buffering
ondurationchangeNewscript Script to be run when the length of the media changes
onemptiedNewscript Script to be run when something bad happens and the file is suddenly unavailable (like unexpectedly disconnects)
onendedNewscript Script to be run when the media has reach the end (a useful event for messages like "thanks for listening")
onerrorNewscript Script to be run when an error occurs when the file is being loaded
onloadeddataNewscriptScript to be run when media data is loaded
onloadedmetadataNewscriptScript to be run when meta data (like dimensions and duration) are loaded
onloadstartNewscriptScript to be run just as the file begins to load before anything is actually loaded
onpauseNewscript Script to be run when the media is paused either by the user or programmatically
onplayNewscript Script to be run when the media is ready to start playing
onplayingNewscript Script to be run when the media actually has started playing
onprogressNewscript Script to be run when the browser is in the process of getting the media data
onratechangeNewscript Script to be run each time the playback rate changes (like when a user switches to a slow motion or fast forward mode)
onreadystatechangeNewscript Script to be run each time the ready state changes (the ready state tracks the state of the media data)
onseekedNewscript Script to be run when the seeking attribute is set to false indicating that seeking has ended
onseekingNewscript Script to be run when the seeking attribute is set to true indicating that seeking is active
onstalledNewscript Script to be run when the browser is unable to fetch the media data for whatever reason
onsuspendNewscriptScript to be run when fetching the media data is stopped before it is completely loaded for whatever reason
ontimeupdateNewscriptScript to be run when the playing position has changed (like when the user fast forwards to a different point in the media)
onvolumechangeNewscriptScript to be run each time the volume is changed which (includes setting the volume to "mute")
onwaitingNewscriptScript to be run when the media has paused but is expected to resume (like when the media pauses to buffer more data)

0 komentar:

Posting Komentar