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

'offsetTop' 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.offsetTop);">offsetTop</button>
</body>
</html>

    
      
      








Related examples in the same category

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