The Wand
12-07-2006, 01:16 PM
Hello,
I've produced an image map using HTML and all is working ok on that front. I have tried adding the window.status function in the anchor tag but it doesn't seem to work, do I need some sort of function in the <head> tag ?. Any help would be appreciated.
Code is as follows....
<html>
<head>
<title>AFC Yew Tree</title>
</head>
<body bgcolor="#6699FF">
<img src="Menu1.gif" usemap="#1" border="0">
<map name="1">
<area shape="rect" coords="0,0,207,70"
href="News.htm" target="right"
onMouseOver="window.status='Link to News' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,70,207,145"
href="Results.htm" target="right"
onMouseOver="window.status='Link to Results' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,145,207,210"
href="League.htm" target="right"
onMouseOver="window.status='Link to League' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,210,207,270"
href="Stats.htm" target="right"
onMouseOver="window.status='Link to Player Stats' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,270,207,330"
href="Social.htm" target="right"
onMouseOver="window.status='Link to Social Events' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,330,207,391"
href="Contact.htm" target="right"
onMouseOver="window.status='Link to Contact US' ; return true"
onMouseOut="window.status='' ; return true">
</map>
</body>
</html>
I've produced an image map using HTML and all is working ok on that front. I have tried adding the window.status function in the anchor tag but it doesn't seem to work, do I need some sort of function in the <head> tag ?. Any help would be appreciated.
Code is as follows....
<html>
<head>
<title>AFC Yew Tree</title>
</head>
<body bgcolor="#6699FF">
<img src="Menu1.gif" usemap="#1" border="0">
<map name="1">
<area shape="rect" coords="0,0,207,70"
href="News.htm" target="right"
onMouseOver="window.status='Link to News' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,70,207,145"
href="Results.htm" target="right"
onMouseOver="window.status='Link to Results' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,145,207,210"
href="League.htm" target="right"
onMouseOver="window.status='Link to League' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,210,207,270"
href="Stats.htm" target="right"
onMouseOver="window.status='Link to Player Stats' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,270,207,330"
href="Social.htm" target="right"
onMouseOver="window.status='Link to Social Events' ; return true"
onMouseOut="window.status='' ; return true">
<area shape="rect" coords="0,330,207,391"
href="Contact.htm" target="right"
onMouseOver="window.status='Link to Contact US' ; return true"
onMouseOut="window.status='' ; return true">
</map>
</body>
</html>