Onmouseover event in Javascript
The user moves the mouse over an HTML element.
<script type = "text/javascript">
function mouseOver() {
alert("Hello Bro");
}
</script>
<img onmouseover="mouseOver()" border="0" src="image.jpg" width="32" height="32">
Post Your Comment