Get scroll top offset
Description
The following code shows how to get the scroll top offset.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from ww w . j ava 2s. c om-->
var p = $("p:first");
$("p:last").text("scrollTop:" + p.scrollTop());
});
</script>
</head>
<body>
<p>Hello java2s.com</p>
</body>
</html>