'boundingHeight' Example : Bounds « Style Layout « JavaScript DHTML






'boundingHeight' Example

    
<html>
<body>
<textarea id="myText" cols="70" rows="2" onclick="function1(this);">
Sample text for the document
</textarea>
<button onclick="function1()">Bounding Height</button>
<script language="JavaScript">
    function function1() {
        var m = myText.createTextRange(); 
        alert(m.boundingHeight);
    }
</script> 
</body>
</html>

    
      
      








Related examples in the same category

1.'boundingWidth' Example
2.'boundingTop' Example
3.'boundingLeft' Example