'boundingTop' Example : Bounds « Style Layout « JavaScript DHTML
- JavaScript DHTML
- Style Layout
- Bounds
'boundingTop' Example
<html>
<body>
<textarea id="myText" cols="70" rows="2" onclick="function1(this);">
Sample text for the document</textarea>
<button onclick="function4()">Bounding Top</button>
<script language="JavaScript">
function function4() {
var m = myText.createTextRange();
alert(m.boundingTop);
}
</script>
</body>
</html>
Related examples in the same category