hallo!
folgendes problem habe ich....ich habe eine navigation...als tabelle...in jeder zelle iss ein link und die zellen können sich durch mouseover/mouseout verfärben....das hat den effect eines flash buttons,wird aber sehr viel schneller geladen (das iss mir das wichtigste)..nun iss meine frage..wie kann ich die einzelnen zellen verlinken?ich könnte zwar die einzelnen wörter verlinken,aber ich will natürlich,dass die gesamte zelle aktiv iss...mit imagemaps funkt es leider nicht.....oder hab ich mir da ein irreales ziel gesetzt?! ich schreib mal den code hier dazu:
schöne grüsse!!!
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="200" height="30" onMouseover="this.bgColor='blue'" onMouseOut="this.bgColor='orange'">
<div align="center">LINK1</div>
</td>
<td width="200" height="30" onMouseover="this.bgColor='blue'" onMouseOut="this.bgColor='orange'">
<div align="center">LINK2</div>
</td>
<td width="200" height="30" onMouseover="this.bgColor='blue'" onMouseOut="this.bgColor='orange'">
<div align="center">LINK3</div>
</td>
<td width="200" height="30" onMouseover="this.bgColor='blue'" onMouseOut="this.bgColor='orange'">
<div align="center">LINK4</div>
</td>
</tr>
</table>