Skip to content
Advertisement

How to overflow auto focus last element

I develop Todo App. İf add to new element, scrollbars not focusing bottom of the page. How can i solve this problem ?

How can I automatically fix it to the bottom all the time?

Advertisement

Answer

You can make use of Element.scrollIntoView() after adding it.

For example:

JavaScript

For more information’s about compatibility you should have a look at https://developer.mozilla.org/de/docs/Web/API/Element/scrollIntoView it is marked as experimental, but all common browsers support it.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement