0
Q:

on hover event

element.onmouseover = function() {
  //Hovering
}
1
<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>
1
onmouseover event 
1
mouse over is hover
-2

New to Communities?

Join the community