Back to Scripts page
Click in the text area below, select all and copy to grab the script
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Link Rollover</title> <script language="Javascript" type="text/javascript"> <!-- Hide script from old browsers if (document.images) { arrowRed = new Image arrowBlue = new Image arrowRed.src = "images/redArrow.gif" arrowBlue.src = "images/blueArrow.gif" } else { arrowRed = "" arrowBlue = "" document.arrow = "" } // End hiding script from old browsers --> </script> </head> <body bgcolor="#FFFFFF"> <h1><a href="next.html" onmouseover="document.arrow.src=arrowRed.src" onmouseout="document.arrow.src=arrowBlue.src">Next page</a></h1><br /> <img src="images/blueArrow.gif" width="147" height="82" name="arrow" alt="arrow" /> </body> </html>
Images:
(Some scripts do not have associated images)