Сообщение от Squirr
|
size = document.getElementById(contentMenuPersonal).style .height
|
Вы не получите это значение, если оно не было явно задано в атрибуте style или программно установлено в скрипте.
<style>
#but {height: 50px}
</style>
<button id="but" onclick="alert(this.style.height)">click</button>
<button style="height: 60px" onclick="alert(this.style.height)">click</button>