onmouseout in these event it will fire when mouseout the object
These mouseover and mouseout it used to display the message box when mouse in and mouse out the specific item
<html>
<head><title>STUDENTWEBSITE</title>
<script language="javascript">
function fnover()
{
alert("Mouse ovesr");
}
function fnout()
{
alert("Mouse out");
}
</script>
</head>
<body>
<img src="1.jpg" onmouseover="fnover()" onmouseout="fnout()">
</body>
</html>
![Dhtml onmouseover onmouseout event how to display dialog box when mouse in and mouse out in javascript](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEXgWGEkmVUw5gsh4KNjL1d8TuRDOs8MX9bCXJk8VnnMAqt8SziXnqvlbqvT1rIgQfa-fmprqExieUtCtCL2hHh-TlS4Ao6osnc8KQDYDd31WMEj5zP_hTpxwVCHfoP4zTYQ4QqNyNLevG/s400/Dhtml+onmouseover+onmouseout+event++how+to+display+dialog+box+when+mouse+in+and+mouse+out.jpg)
0 Comments