Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/11/2004, 05:30
flacoluis
 
Fecha de Ingreso: noviembre-2004
Ubicación: trelew - chubut
Mensajes: 134
Antigüedad: 20 años, 3 meses
Puntos: 0
te mando este trozo de codigo que encontre en el web

tal vez te sirva
<style type="text/css">
<!--
body { background: #FFF }
.yellowThing {
background: #FF9;
}
.whiteThing {
background: #FFF;
}
.redThing {
background: #F00;
}
//-->
</style>

<table cellspacing="0" cellpadding="3" border="0">
<tr onmouseover="this.className='yellowThing';"
onmouseout="this.className='whiteThing';"><td>hell o</td><td>world</td></tr>
<tr onmouseover="this.className='yellowThing';"
onmouseout="this.className='whiteThing';"><td>hola </td><td>mundo</td></tr>
<tr onmouseover="this.className='yellowThing';"
onmouseout="this.className='whiteThing';"><td>hell o</td><td>hello</td></tr>
<tr onmouseover="this.style.background='#F00';"
onmouseout="this.style.background='#FFF';"><td>hol a</td><td>mundo</td></tr>
</table>

<table cellspacing="0" cellpadding="3" border="1">
<tr onmouseover="alert('hello onmouseover'+this.style);"
class="redThing">
<td>the tr for this row has</td>
<td>an onmouseover alert</td>
</tr>
</table>