Ver Mensaje Individual
  #10 (permalink)  
Antiguo 23/06/2005, 07:32
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 8 meses
Puntos: 834
Quizá esto te de una pista: El alert te mostrará todas las propiedades del objeto.

Código:
<html> 
<head> 
<style> 

</style> 

<script> 
function ver(esto){ 
var estos=document.getElementById(esto); 
for (var i in estos) { 
       alert("estos." + i + " = " + estos[i]); 
   } 

}
</script> 
    <title>Untitled</title> 
</head> 

<body onLoad="ver('pepote')"> 
<div style="font-family: "Courier New", Courier, monospace; 
    font-size: 16px; 
    font-size-adjust: inherit; 
    font-stretch: narrower; 
    font-style: italic; 
    font-variant: small-caps; 
    font-weight: bolder; 
    text-align:center;" id="pepote">Camisa<br> 
</div> 

</body> 
</html>