'onMouseLeave' Example : onMouseLeave « Event Handlers Reference « JavaScript Reference

'onMouseLeave' Example

    
<head>
<script language="JavaScript">
    function function1(){
        alert('The '+event.type+' event fired') 
    } 
</script>
</head>
<body>
    <div id="myDiv" onmouseleave="function1()">
        Move the mouse over this div element area.
    </div>
</body>

    
      
      








Related examples in the same category

1.'onMouseLeave' Syntax and Note
2.'onMouseLeave' Properties
3.'onMouseLeave' is applied to