Lo que sucede es que si tengo este código:
Código HTML:
Ver original
<html> <head> <style> *{ margin:0px; padding:0px; } .some_div{ border-width:1px; border-color:#000000; border-style:solid; position:relative; width:680px; height:480px; margin:78px 0px 0px 44px; } </style> <script type="text/javascript"> function see(){ var d = document.getElementById("some_div"); alert(d.style.width); } </script> </head> <body> </body> <html>
No me toma el width.
¿Cómo debo hacerlo?