ho fatto come avete detto ma nn funge:
Codice PHP:
<Style Type="TEXT/CSS">
#tabella1
.tabella1
{
background-color:white;
}
#tabella1:hover
.tabella1_hover
{
background-color:red;
}
</Style>
window.onload = function()
{
var riga = document.getElementById('tabella1')
riga.onmouseover = function()
{
this.className = 'tabella1_hover'
}
riga.onmouseout = function()
{
this.className = 'tabella1'
}
}
//poi nella riga
echo "<tr id='tabella1' bgcolor='$color'>";

Rispondi quotando