'clientHeight' Example : clientHeight « Javascript Properties « JavaScript Reference

'clientHeight' Example

    
<html>
<body>
<div id="myDiv" 
     style="position:absolute; 
            left:150; 
            top:100; 
            width:400; 
            height:200; 
            background-color:blue;">
</div>
<button onclick="alert(myDiv.clientHeight);">clientHeight</button>&nbsp;
<br>
<br>
</body>
</html>

    
      
      








Related examples in the same category

1.'clientHeight' Syntax and Note
2.'clientHeight' is applied to