'onMouseOut' Example : onMouseOut « Event onMethod « JavaScript DHTML
- JavaScript DHTML
- Event onMethod
- onMouseOut
'onMouseOut' Example
<head>
<script language="JavaScript">
function function1(){
alert('The '+event.type+' event fired')
}
</script>
</head>
<body>
<div id="myDiv" onmouseout="function1()">
Move the mouse over and out this div element area.
</div>
</body>
Related examples in the same category