Cita:
<html>
<head>
</head>
<body>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td onmouseover='this.style.background="red"' onmouseout='this.style.background="white"'>
Texto de la celda
</td>
</tr>
</table>
</body>
</html>
que funciona perfecto pero cuando quiero implementarlo en varias celdas como una funcion no me resulta, ej:<html>
<head>
</head>
<body>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td onmouseover='this.style.background="red"' onmouseout='this.style.background="white"'>
Texto de la celda
</td>
</tr>
</table>
</body>
</html>
Cita:
en <head>
function mOver(this){
celda.style.background= 'red' }
en <body>
<table>
<tr>
<td name="celda" onmouseover="mOver()";> Lalala </td>
</tr>
</table>
probe con "id" en vez de "name" pero es lo mismo, alguien sabe porque es? en <head>
function mOver(this){
celda.style.background= 'red' }
en <body>
<table>
<tr>
<td name="celda" onmouseover="mOver()";> Lalala </td>
</tr>
</table>