Source Dhtml programing
<html>
<head>
<title> ON MOUSE OVER</title>
<script language="javascript">
function fun1()
{
storesimage.src="computer.jpg";
}
function fun2()
{
storesimage.src="car.jpg";
}
</script>
</head>
<body bgcolor="#ffe4c4">
<font face="verdona" color="blue" size=5>
<b style="color:brown;">Mouse Over</b>
<img id="storesimage" src="pic1.jpg" align="left">
<ol>
<li onmouseover="fun1()"> A Computer
<li onmouseover="fun2()"> A Car
</ol></font>
</body>
</html>
Output DHTML onmouse over
0 Comments