еще вопрос.
<body onclick="f();" style="height: 50px; width:100px; border: solid black;"></body>
<script>
function f(){
var str = document.body.style.width;
str = '50px';
alert(str);
}
</script>
Почему не срабатывает? alert пишет что
str == 50px и все должно быть тип-топ.
Вот другой вариант. Напрямую и все ок.
<body onclick="f();" style="height: 50px; width:100px; border: solid black;"></body>
<script>
function f(){
document.body.style.width = '50px';
}
</script>