To get and set the current vertical position of an element, scrollTop()
method can be used.
<script> alert($("#divScroll").scrollTop()); $("#divScroll").scrollTop("100"); </script>
Above code snippet will first alert the scroll top position of the element whose id is “divScroll” and then move its vertical scroll bar position to 100.
Views: 17656 | Post Order: 57