У меня есть модальное окно из Materialize, я хочу вернуть модальное окно вверх, когда пользователь закрывает модальный.
Модальное изображение:
I try to get the scroll value like:
console.log("Scroll Top: " + modalContent.scrollTop);
console.log("Offset: " + modalContent.offsetTop);
The console:
Scroll Top: 229
Offset: 0
I thought That I can override the scrollTop value, but when I do like:
document.querySelector(".modal-content").scrollTop = 0;
Nothing happen to the modal (the modal not scrolling to the top).
When I try to log the current position with:
console.log(document.querySelector(".modal-content").scrollTop)
It always returns zero whenever I scrolled trought the modal.
I want that when user click close the modal is scrolled back to the top. Did I miss something?
Modal:
Сведения о команде Флаг страны Сохранить команду Закрыть
Приемник событий кнопки закрытия:
let modalClose = document.querySelector(".close-modal-btn");
modalClose.addEventListener("click", function(e) {
e.preventDefault();
document.querySelector(".modal-content").scrollTop = 0;
});