this.Tony
this.Tony

Reputation: 241

how can i begin scroll at the bottom of a div

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

Answers (1)

Lucas Trzesniewski
Lucas Trzesniewski

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

Related Questions