Question : ALT text in Firefox

Hi,

I have generated some image maps in order to build Hypelinks (See attached code). Everything works fine besides in firefox no altenate text (ALT) is shown.
Can someone help me?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
<html>

<head>
  <meta name="google-site-verification" content="9yI53uwZ9evX1F9QH746-Q41NAiKOl5cZous1UWXLrQ" />
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
  <meta http-equiv="Content-Script-Type" content="text/javascript"/>
  <meta name="Generator" content="Corel PHOTO-PAINT 14.0"/>
  <title>Francis Guitars, Handmades. Modifications, Repairs</title>
</head>

<body bgcolor="#000000">
<center>

<table border="0" cellspacing="0" cellpadding="0" width="1161" height="150">
  <tr align="left" valign="top">
    <td>
	<IMG src="Bilder_Allgemein/header.jpg" ALT="" USEMAP="#header" BORDER=0>
	<MAP NAME="header" MAP ID="1">
	<AREA SHAPE=RECT COORDS="580,22,730,55" HREF="handmades.html" ALT="zu den handgefertigten Gitarren" target="_blank"></AREA>
	<AREA SHAPE=RECT COORDS="735,22,950,55" HREF="in_Erstellung.html" ALT="Seite in Vorbereitung" target="_blank"></AREA>
	<AREA SHAPE=RECT COORDS="967,58,1014,66" HREF="impressum.html" ALT="zum Impressum" target="_blank"></AREA>
	</MAP>
    </td>
  </tr>
</table>
 

<table border="0" cellspacing="" cellpadding="0" width="1161" height="784" background="Bilder_Allgemein/startseite_back.jpg">
 <tr>
    <td> &nbsp; </td> 
    <td> &nbsp; </td> 
 </tr>
</table>

</center>
</body>
</html>

Answer : ALT text in Firefox

Use this formula in ALL links, it works on all browsers --

<AREA SHAPE=RECT COORDS="580,22,730,55" HREF="handmades.html" ALT="zu den handgefertigten Gitarren" title = ="zu den handgefertigten Gitarren"  target="_blank"></AREA>

You can also add the yellow box with --

onmouseover="self.status='zu den handgefertigten Gitarren';return true"  

and remove it with -- onmouseout="self.status='';return true"

Those 2 also go into the link code.  That gets a mouseover prompt and the ALT title text in all browsers.
Random Solutions  
 
programming4us programming4us