anch'io vorei cambiare l'immagine di sfondo della mia cella... con icolori semplici funziona... però se metto come sfondo delle immagini si impalla... posto il mio codice:
<html>
<head>
<title>Indice</title>
<script language="javascript">
function cambia_sfondo (x)
{ document.getElementById(x).style.background="../Immagini/SfondoAzzurro.jpg";}
function torna_sfondo (y)
{ document.getElementById(y).style.background="../Immagini/SfondoArancione.jpg";}
</script>
</head>
<body background=../Immagini/SfondoArancione.jpg>
<div align="center">
<table border="3" cellspacing="1" cellpadding="10" width="150" bordercolorlight=#0066FF bordercolordark=#0066FF style="border-collapse: collapse">
<tr>
<td id="cella1" onMouseOver="cambia_sfondo('cella1')" onMouseOut="torna_sfondo('cella1')" bordercolor="#0066FF" bordercolorlight="#0066FF" bordercolordark="#0066FF" background="../Immagini/SfondoArancione.jpg"> </th><p align="center"> <a href="Home.htm" target="Corpo">
HOME</a></p> </td>
</table>
</body>
</html>