У меня работает 
<div id="container" style="border: 1px solid #000;">hehe</div>
<button onclick="heigth_plus()">Изменить высоту</button>
<script>
function heigth_plus()
 {
 var container=document.getElementById('container'); 
 //alert(document.body.clientHeight) 
 container.style.height=100+"px"
 }
</script>