scroll to bottom on page load but will allow to scroll on top

kunz

I would like to scroll The div bottom to the bottom of the page when page loads but will also like to scroll back up when needed to how can i archive this without any animations how can i achieve this echo "<div id='bottom'><p><b>$from_username</b><br />$message</p></div>";

<script>

    function scrollpage() {     
        function f() 
        {
            window.scrollTo(0,i);
            if(status==0) {
                i=i+40;
                if(i>=Height){  status=1; } 
            } 
        setTimeout( f, 0.01 );
        }f();
    }
    var Height=document.documentElement.scrollHeight;
    var i=1,j=Height,status=0;
    scrollpage();
    </script>

this is what i have so far, i am able to scroll down automatically but can not scroll up when i want to, what can i do if i want to scroll up ?

Hyra Power

Scroll to bottom of Div on page load (jQuery) this is where I found the code I needed to put this together for you.

    <script>
        $( document ).ready(function() { 
            var d = $('#div1');
            d.scrollTop(d.prop("scrollHeight"));
            console.log("at the bottom!");
        });
    </script>
    </head>
    <body>
    <p>top</p>
    <div style="max-height: 200px;">
    <div id='div1' style='background-color:grey;width:200px;overflow:scroll;overflow-x:hidden;max-height:200px;'>
    <p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p><p>some text</p></div>
    </div>
    <p>bottom</p>
    <p>text under the div</p>
    </body>
</html>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

how to scroll the page to bottom whenever the page load?

From Dev

jQuery scroll only detecting scroll at very top of the page and bottom?

From Dev

Scroll to Top and Scroll to Bottom in Jquery

From Dev

Scroll to Top and Scroll to Bottom in Jquery

From Dev

Javascript scroll to the top and scroll to the bottom

From Dev

Scroll top, then bottom, then top, then bottom

From Dev

how to scroll top and bottom

From Java

Scroll Automatically to the Bottom of the Page

From Dev

Infinitely scroll to the bottom of the page

From Dev

Scroll to near the bottom of page

From Dev

scroll the a growing page to the bottom

From Dev

Scroll bar in page bottom

From Dev

Scroll to near the bottom of page

From Dev

scroll top when clicking on a div, then scroll bottom if scroll is on top

From Dev

Scroll ListView from bottom to top

From Dev

angularjs infinite scroll bottom top

From Dev

Scroll Reveal from Top to Bottom

From Dev

scroll to div on page load

From Dev

scroll to div on page load

From Dev

JS for smooth scroll to the bottom of the page

From Dev

Automatically scroll to bottom as the page loads

From Dev

$mdtoast position bottom of page on scroll

From Dev

JS for smooth scroll to the bottom of the page

From Dev

$mdtoast position bottom of page on scroll

From Dev

Scroll to the Bottom of the Page after postBack

From Java

Scroll to the top of the page using JavaScript?

From Java

How to scroll to top of the page in AngularJS?

From Dev

scroll up the page to the top in selenium