'event' specifies the event which will execute the script code : event « Object « HTML / CSS






'event' specifies the event which will execute the script code

    
<HTML>
<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>  
    
      
      








Related examples in the same category