Ver Mensaje Individual
  #8 (permalink)  
Antiguo 18/06/2004, 04:37
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola a todos.

Dejo un poco de código por si sirve de ayuda:
Código HTML:
<html>
<head>
<script>
function mostrar(obj) {
	celda=obj.getElementsByTagName('td');
	num=celda.length-1;
	bor='1px solid black';
	for(i=0;i<celda.length;i++) {
		celda[i].style.borderTop=bor;
		celda[i].style.borderBottom=bor;
		if(i==0)
			celda[i].style.borderLeft=bor;
		if(i==num)
			celda[i].style.borderRight=bor;
	}
}
</script>
</head>

<body>
<table width="75%" border="0">
  <tr onmouseover="mostrar(this)">
    <td>1-1</td>
    <td>1-2</td>
    <td>1-3</td>
    <td>1-4</td>
  </tr>
  <tr onmouseover="mostrar(this)">
    <td>2-1</td>
    <td>2-2</td>
    <td>2-3</td>
    <td>2-4</td>
  </tr>
</table>
</body>
</html> 
Saludos,