The new additions are how to move the div's scrollbar automatically to the bottom _javascript tips

Source: Internet
Author: User
Sometimes when we are doing dynamically growing Div, the content is generally append to the bottom of the Div, but this brings a problem that compares to the egg pain, that is, the new content will be covered in the bottom, such as

How to let ScrollBar automatically move the bottom of it, this requires the help of JS, assuming Div ID for mydiv, then use the native JS implementation as follows:
Copy Code code as follows:

var mydiv = document.getElementById (' mydiv ');
Mydiv.scrolltop = Mydiv.scrollheight;

If you use jquery, it's easy.
Copy Code code as follows:

var $div = $ (' #myDiv ');
$div. scrolltop ($div [0].scrollheight);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.