HTML CSS Reference/HTML Attributes Reference/event
"event" Example
<HTML>
<head><Title>Example For event</Title></head>
<body>
<script language="JavaScript"
for="myButton"
event="onclick()">alert("button was clicked!")</script>
<input type="Button" id="myButton" value="Click here to trigger event">
</body>
</HTML>
event is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<script> |
+----------------+--------------------------------------------------------------+
"event" Syntax and Note
Note:
This attribute specifies the event which will execute the script code.
Syntax:
<script event="value"> . . . </script>