Reputation: 241
I wanted to know if its possible to make this scrollbar to start at the very bottom a of div http://enscrollplugin.com/
<div id="contentleft>
<ul>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
<li><p>some content here...</p></li>
</ul>
</div>
<script>
$('#contentleft').enscroll({
showOnHover: true,
verticalTrackClass: 'track3',
verticalHandleClass: 'handle3',
scrollIncrement: 15,
easingDuration: 20
});
</script>
Upvotes: 0
Views: 110
Reputation: 51330
Sure...
$("#contentleft").scrollTop($("#contentleft").prop("scrollHeight"));
This line sets the scroll top offset to the scroll height (the total scrollable height of the element).
Upvotes: 1