Estoy teniendo problemas con una cosa en Javascript.
Mi problema es el siguiente:
En una maquetación, quiero saber cual es el ancho o alto de un objeto (en este caso un TD).
Dicho objeto tiene o no tiene definidas sus propiedades de Width o height.
Entonces, creia tener entendido que con objeto.offsetWidth u objeto.offsetHeight, se obtenían dichas proporciones.. pero no me funciona.
Pongo un claro y sencillo ejemplo, para que lo testeeís, y si puede ser, me digaís algo lo antes posible.
Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Ver datos</title>
<script language="JavaScript1.2" type="text/javascript">
function verDatos ()
{
var miCelda = document.getElementById("miCelda");
alert (miCelda.offsetWidth + " x " + miCelda.offseHeight)
}
</script>
</head>
<body>
<table cellpadding="0" cellspacing="0" width="100%" style="height:100%" border="0">
<tr>
<td width="100%" height="100%" align="center" valign="top">
<table cellpadding="0" cellspacing="0" width="300" border="0">
<tr>
<td id="miCelda"><a href="javascript:verDatos()">Pinchame</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Saludos y besos