Show picture on mouseover.

0 votes
asked by about BlueVoda Website Builder
edited by

1 Answer

0 votes
answered by (264k points)

<html>
<head>
<script>
function bigImg(x)
{
x.style.height="64px";
x.style.width="64px";
}

function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
</script>
</head>
<body>

<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="Image.EXTENSION" alt="IMAGE" width="32" height="32">

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...