blob: 0069cf95db425fbdd6bd18e1efdeade9fb8273d3 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE HTML>
<html>
<body>
<div style="position:fixed; top:100px;" id="d">hello</div>
<script>
document.write(document.getElementById("d").offsetTop);
</script>
</body>
</html>
|