Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

image map event handlers...

Status
Not open for further replies.

estesflyer

Programmer
Dec 19, 2000
284
US
ok, here is my script, but for some reason, it WILL not work! I have tried everything that I know to do, and it STILL wont work...
Code:
<html>
<head>
<title>site</title>
<script language=&quot;javascript&quot;>
<!--
function home()
{
window.status='Click here to go home';
}
function homeoff()
{
window.status=' ';
}
function &amp;#119;wwboard()
{
window.status='Read about all kinds a crazy stuff mah board!';
}
function &amp;#119;wwboardoff()
{
window.status=' ';
}
function prevupdate()
{
window.status='Read every single update posted as of January 1, 2000';
}
function prevupdateoff();
window.status=' ';
}
function pics()
{
window.status='see pictures of me, and places that i have been';
}
function picsoff()
{
window.status=' ';
}
function links()
{
window.status='See some links to some other cool sites';
}
function linksoff()
{
window.status=' ';
}
function boutme()
{
window.status='Read about me';
}
function boutmeoff()
{
window.status=' ';
}
function journal()
window.status='I started a journal as of 2001';
}
function journaloff()
{
window.status=' ';
}
function backpack()
{
window.status='Read about all my backpacking adventures!';
}
function backpackoff()
{
window.status=' ';
}
function contact()
{
window.status='Got questions? Comments? Click here to contact me';
}
function contactoff()
{
window.status=' ';
}
//-->
</script>
</head>
<body>
<map name=&quot;toplinks&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;home()&quot; onMouseOut=&quot;homeoff()&quot; alt=&quot;Home&quot; coords=&quot;0,4,41,22&quot; href=&quot;&amp;#104;ttp://&amp;#119;ww.cfm-resources.com/e/estesflyer&quot; title=&quot;Home&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;&amp;#119;wwboard()&quot; onMouseOut=&quot;&amp;#119;wwboardoff()&quot; alt=&quot;Post messages, etc...&quot; coords=&quot;53,2,152,23&quot; href=&quot;html/&amp;#119;wwboard.html&quot; title=&quot;Post messages, etc...&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;prevupdate()&quot; onMouseOut=&quot;prevupdateoff()&quot; alt=&quot;Read EVERY single update ever posted on this site!&quot; coords=&quot;160,3,255,23&quot; href=&quot;html/prevupdates.html&quot; title=&quot;Read EVERY single update ever posted on this site!&quot;>
<area shape=&quot;default&quot; nohref>
</map>
<map name=&quot;news&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;pics()&quot; onMouseOut=&quot;picsoff()&quot; alt=&quot;See pictures of me, my friends, and places I have been&quot; coords=&quot;25,39,83,64&quot; href=&quot;html/pics.html&quot; title=&quot;See pictures of me, my friends, and places I have been&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;links()&quot; onMouseOut=&quot;linksoff()&quot; alt=&quot;TONS of links!&quot; coords=&quot;19,72,68,94&quot; href=&quot;html/links.html&quot; title=&quot;TONS of links!&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;boutme()&quot; onMouseOut=&quot;boutmeoff()&quot; alt=&quot;Read all about me&quot; coords=&quot;21,103,93,128&quot; href=&quot;html/about.html&quot; title=&quot;Read all about me&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;journal()&quot; onMouseOut=&quot;journaloff()&quot; alt=&quot;Updates posted daily!&quot; coords=&quot;21,136,77,161&quot; href=&quot;html/journal.html&quot; title=&quot;Updates posted daily!&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;backpack()&quot; onMouseOut=&quot;backpackoff()&quot; alt=&quot;Read all about my backpacking adventures&quot; coords=&quot;22,167,149,195&quot; href=&quot;html/backpack.html&quot; title=&quot;Read all about my backpacking adventures&quot;>
<area shape=&quot;rect&quot; onMouseOver=&quot;contact()&quot; onMouseOut=&quot;contactoff()&quot; alt=&quot;Got questions? Comments? Click here to contact me&quot; coords=&quot;22,199,103,223&quot; href=&quot;html/contact.html&quot; title=&quot;Got questions? Comments? Click here to contact me&quot;>
<area shape=&quot;default&quot; nohref>
</map>
</body>
</html>

 
what is not working. Are you receivining an error? jared@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top