mouseover html code example
Example 1: javascript hover event
element.onmouseover = function() {
}
Example 2: javascript on hover
<img onmouseover="enlargeImage(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">
<script>
function enlargeImage(x) {
x.style.height = "64px";
x.style.width = "64px";
}
</script>
Example 3: on mouseover in javascript
The mouseover event is fired at an Element when a pointing device
(such as a mouse or trackpad) is used to move the cursor onto the
element or one of its child elements.