Answers for "display image on hover javascript"

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>
Posted by: Guest on April-23-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language