ok i learned some JavaScript recently using onmouseOver....i want to make a navigation bar that pops up when you hover over a button... i have it so the image will pop up in the code below....but how do i Map it so i can click the links on it?
| Code: |
|
<html> <head> <script type="text/javascript"> function mouseOver() { document.b1.src ="navigation.jpg" } function mouseOut() { document.b1.src ="eric.jpg" } </script> </head> <body> <a href="http://www.burningjacks.com/" target="_blank" onmouseOver="mouseOver()" onmouseOut="mouseOut()"> <img border="0" alt="eric" src="eric.jpg" name="b1" /> </a> </body> </html> |
