Hola quisiera saber como intercambiar la imagen de fondo de un td con javascript si alguien pudiera ayudarme por favor.
<td background="images/images.gif"> </td>
| ||||
Hola akexis: Yo prefiero usar estilos: <html> <body> <table> <tr><td style="background-color: red" onmouseover="this.style.backgroundColor = 'blue'" onmouseout="this.style.backgroundColor = 'red'">prueba</td></tr> </table> </body> </html>
__________________ Por favor: No hagan preguntas de temas de foros en mensajes privados... no las respondo |