Description: This script displays an arrow image alongside the link when you move your cursor over the link. Furthermore, the arrow blinks while the mouse is over it. Nice visual effect.
Code
<Head>
<Title>Cut&Paste arrow onmouseover</Title>
<Script Type="Text/JavaScript">
VaRImage01= "On.gif" ;
VaRImage02= "Off.gif" ;
Function Imgover (imgname ){
Imgname. SRC= Image01;
}
Function Imgout (imgname ){
Imgname. SRC= Image02;
}
</SCRIPT>
</Head>
<Body>
< IMG name = " Image01 " SRC = " Off.gif " Width = " 10px " Height = " 10px " ALT = "" / >
< A href = " # " Onmouseover = " Imgover (image01) " Onmouseout = " Imgout (image01) " > Google.com < / A> <br / >
< IMG name = " Image02 " SRC = " Off.gif " Width = " 10px " Height = " 10px " ALT = "" / >
< A href = " # " Onmouseover = " Imgover (image02) " Onmouseout = " Imgout (image02) " > Baidu.com < / A> <br / >
< IMG name = " Image03 " SRC = " Off.gif " Width = " 10px " Height = " 10px " ALT = "" / >
< A href = " # " Onmouseover = " Imgover (image03) " Onmouseout = " Imgout (image03) " > Yahoo.com < / A> <br / >
< IMG name = " Image04 " SRC = " Off.gif " Width = " 10px " Height = " 10px " ALT = "" / >
<A href="#"Onmouseover="Imgover (image04)"Onmouseout="Imgout (image04)">Bing.com</A>
</Body>