Salve,
non capisco perché se scrivo questo mi funziona
Codice PHP:
<table id="tabellaesterna" width="100" height="100">
<tr>
<td align="center">
<table width="100" height="100">
<tr>
<td width="100"
onMouseOver="this.className='classe_70';"
onMouseOut ="this.className='classe_60';">prova</td>
</tr>
</table>
</td>
</tr>
</table>
mentre se scrivo questo non mi funziona
Codice PHP:
<table id="tabellaesterna" width="100" height="100">
<tr>
<td align="center">
<table width="100" height="100">
<tr>
<td width="100"
onMouseOver="tabellaesterna.className='classe_70';"
onMouseOut ="tabellaesterna.className='classe_60';">prova</td>
</tr>
</table>
</td>
</tr>
</table>
Nel primo caso voglio cambiare la classe di una cella, nel secondo quello di una cella, ma della tabella esterna che contiene la cella interna...