Hallo zusammen, ich habe wie folgt eine Tabelle. Wenn ich �ber eine Zelle mit der Maus fahre, dann wird der Hintergrund in rot angezeigt. Jetzt m�chte ich aber, dass wenn jemand auf eine Zelle klickt das die Farbe stehen bleibt. Wenn aber danach eine andere Zelle angeklickt wird dann m�sste der Hintergrund, von der ersten angeklickten Zelle, wieder aufgehoben werden.
Hat jemand eine Idee wie ich so was umsetzen kann ? ----------------- cut ------------------------------------------------------ <body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <table border="0" cellSpacing="1" cellPadding="0"> <TBODY> <TR bgcolor="#ffffff"> <TD width="50" bgcolor="#f6c05b"> <DIV align="center"> <font face="Verdana" size="2" color="#000080"><strong>Test</strong></font> </DIV> </td> <a onclick="href='01.html'" target="main1"><td width="25" onMouseOver="this.style.backgroundColor='#ff0000'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='';"></a> <DIV align="center"><a href="01.html" target="main1"><font face="Verdana" size="2" color="#000080">01</font></a></DIV> </TD> <a onclick="href='02.html'" target="main1"><td width="25" onMouseOver="this.style.backgroundColor='#ff0000'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='';"></a> <DIV align="center"><a href="02.html" target="main1"><font face="Verdana" size="2" color="#000080">02</font></a></DIV> </TD> <a onclick="href='03.html'" target="main1"><td width="25" onMouseOver="this.style.backgroundColor='#ff0000'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='';"></a> <DIV align="center"><a href="03.html" target="main1"><font face="Verdana" size="2" color="#000080">03</font></a></DIV> </TD> <a onclick="href='04.html'" target="main1"><td width="25" onMouseOver="this.style.backgroundColor='#ff0000'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='';"></a> <DIV align="center"><a href="04.html" target="main1"><font face="Verdana" size="2" color="#000080">04</font></a></DIV> </TD> <a onclick="href='05.html'" target="main1"><td width="25" onMouseOver="this.style.backgroundColor='#ff0000'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='';"></a> <DIV align="center"><a href="05.html" target="main1"><font face="Verdana" size="2" color="#000080">05</font></a></DIV> </TD> </TR> </TBODY> </TABLE> ----------------- cut ------------------------------------------------------ Gru� J�rg _______________________________________________ Coffeehouse mailing list [EMAIL PROTECTED] http://www.glengamoi.com/mailman/listinfo/coffeehouse
