Scroll Automatically to the Bottom of the Page

jat

Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page.

For a matter of fact, I do know that this can be done using jQuery.

So, could you provide me with some documentation or some links where I can find answer to this question?

EDIT: Need to scroll to a particular HTML element at the bottom of the page

Zhihao

jQuery isn't necessary. Most of the top results I got from a Google search gave me this answer:

window.scrollTo(0,document.body.scrollHeight);

Where you have nested elements, the document might not scroll. In this case, you need to target the element that scrolls and use it's scroll height instead.

window.scrollTo(0,document.querySelector(".scrollingContainer").scrollHeight);

You can tie that to the onclick event of your question (i.e. <div onclick="ScrollToBottom()" ...).

Some additional sources you can take a look at:

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Automatically scroll to bottom as the page loads

From Dev

Scroll automatically to the bottom page - speed control

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

How to automatically scroll to the bottom in AngularJS?

From Dev

How to scroll the window automatically when mouse moves bottom of the page using jquery

From Dev

JS for smooth scroll to the bottom of the page

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 Dev

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

From Dev

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

From Dev

ng-repeat render and automatically scroll to bottom

From Dev

On Scroll fires automatically on page refresh

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

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

From Dev

How to scroll to automatically scroll to the bottom of an editable div onload

From Dev

jquery one page scroll start at the bottom

From Dev

Detect if scroll has touched bottom of page

From Dev

Scroll to bottom of page after get request AngularJs

From Dev

How to add some more scroll at the bottom of the page

From Dev

Scroll HTML page before it 'reaches' the bottom

From Dev

How to add some more scroll at the bottom of the page

From Dev

Javascript - scroll bottom within another browser/page

Related Related

  1. 1

    Automatically scroll to bottom as the page loads

  2. 2

    Scroll automatically to the bottom page - speed control

  3. 3

    Infinitely scroll to the bottom of the page

  4. 4

    Scroll to near the bottom of page

  5. 5

    scroll the a growing page to the bottom

  6. 6

    Scroll bar in page bottom

  7. 7

    Scroll to near the bottom of page

  8. 8

    How to automatically scroll to the bottom in AngularJS?

  9. 9

    How to scroll the window automatically when mouse moves bottom of the page using jquery

  10. 10

    JS for smooth scroll to the bottom of the page

  11. 11

    $mdtoast position bottom of page on scroll

  12. 12

    JS for smooth scroll to the bottom of the page

  13. 13

    $mdtoast position bottom of page on scroll

  14. 14

    Scroll to the Bottom of the Page after postBack

  15. 15

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

  16. 16

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

  17. 17

    ng-repeat render and automatically scroll to bottom

  18. 18

    On Scroll fires automatically on page refresh

  19. 19

    Laravel - redirect to page and scroll to the bottom of the page

  20. 20

    Laravel - redirect to page and scroll to the bottom of the page

  21. 21

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

  22. 22

    How to scroll to automatically scroll to the bottom of an editable div onload

  23. 23

    jquery one page scroll start at the bottom

  24. 24

    Detect if scroll has touched bottom of page

  25. 25

    Scroll to bottom of page after get request AngularJs

  26. 26

    How to add some more scroll at the bottom of the page

  27. 27

    Scroll HTML page before it 'reaches' the bottom

  28. 28

    How to add some more scroll at the bottom of the page

  29. 29

    Javascript - scroll bottom within another browser/page

HotTag

Archive