Salve a tutti,
il mio problema riguarda l'effetto onmouseout e onmouseover che funziona solo dal lato backend mentre lato frontend non accade nulla.
Premetto che questo effetto l'ho applicato alle righe di una tabella, questo è il codice:
1^ tabella:
<table style="width: 100%;" border="0">
<tbody>
<tr style="background: none repeat scroll 0% 0% white;" onmouseover="this.style.background='#D0D0D0'" onmouseout="this.style.background='white'">
<td>Prima riga</td>
</tr>
<tr style="background: none repeat scroll 0% 0% white;" onmouseover="this.style.background='#D0D0D0'" onmouseout="this.style.background='white'">
<td>Seconda riga</td>
</tr>
</tbody>
</table>
2^ tabella:
<table style="width: 100%;" border="2" cellpadding="2">
<tbody>
<tr onmouseover="this.bgColor=' #EEEEEE'" onmouseout="this.bgColor=' #C7FF8E'" bgcolor=" #C7FF8E">
<td>Archivio</td>
<td>nn</td>
</tr>
<tr onmouseover="this.bgColor=' #EEEEEE'" onmouseout="this.bgColor=' #C7FF8E'" bgcolor=" #C7FF8E">
<td>Dati di una tabella <!-- TD--> <!-- Tr--></td>
<td>mm</td>
</tr>
<tr onmouseover="this.bgColor=' #EEEEEE'" onmouseout="this.bgColor=' #C7FF8E'" bgcolor=" #C7FF8E">
<td>Dati di una tabella <!-- TD--> <!-- Tr--> <!-- TABLE--></td>
<td>mm</td>
</tr>
</tbody>
</table>
qualcuno sa come posso risolvere?
grazie