I develop Todo App. İf add to new element, scrollbars not focusing bottom of the page. How can i solve this problem ?
Advertisement
Answer
You can make use of Element.scrollIntoView() after adding it.
For example:
JavaScript
x
13
13
1
function addElement(text) {
2
// create a new element
3
const element = document.createElement('p');
4
element.innerText = text;
5
6
// get the list where you want to add the element
7
const list = document.getElementById("myList");
8
list.appendChild(element);
9
10
// scroll to it
11
element.scrollIntoView();
12
}
13
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.