<html> <head> <title>Hot Links</title> <script LANGUAGE="JavaScript"> <!-- // (c) by Manfred Renner IMG01 = "on.gif" //image when mouse is over the link IMG02 = "off.gif" //image when mouse isn't over the link function imgover(imgname){ imgname.src = IMG01 } function imgout(imgname){ imgname.src = IMG02 } //--> </script> </head> <body BGCOLOR="#FFFFFF"> <p>This Javascript displays a small arrow before the link which you have your mouse over. This script is an excellent enhancement and is easy for webmasters who have little Javascript experience because of its simplicity. </p> <p><img NAME="IMG01" SRC="off.gif" WIDTH="10" HEIGHT="10" BORDER="0"> <a HREF="http://chelsea.ios.com/~benny3/javascript/" onMouseOver="imgover(IMG01)" onMouseOut="imgout(IMG01)">JavaScript World</a> <br> <img NAME="IMG02" SRC="off.gif" WIDTH="10" HEIGHT="10" BORDER="0"> <a HREF="http://www.yahoo.com" onMouseOver="imgover(IMG02)" onMouseOut="imgout(IMG02)">Yahoo!</a> </p> </body> </html>
1998 Copyright (C) Next Step All Rights Reserved