event attribute | event property
Sets or retrieves the event for which the script is written.
![]() |
Syntax
| HTML | <element event="p" ... > |
|---|---|
| JavaScript | |
Property values
Type: String
The event. The value for an onmouseover event, for example, is "onmouseover()".
Standards information
- Document Object Model (DOM) Level 2 HTML Specification, Section 1.6.5
Examples
This example uses the EVENT attribute and the event property to handle the onclick event.
<SCRIPT ID=oButtonScript FOR="oButton" EVENT="onclick()">
var sMessage1 = "Flip"
var sMessage2 = "Flop"
if (oButton.innerText == sMessage1) {
oButton.innerText = sMessage2;
}
else {
if (oButton.innerText == sMessage2) {
oButton.innerText = sMessage1;
}
</SCRIPT>
</HEAD>
<BODY>
:
<BUTTON ID="oButton" onmouseout="console.log(oButtonScript.event)">Flip</BUTTON>
See also
Build date: 10/15/2012

