Answers for "how scroll bottom simplebar in vue js"

0

how scroll bottom simplebar in vue js

@sotirislp I had the same problem and figured out it can bo solved using direct reference to content wrapper (element.SimpleBar and element.getScrollElement() didn't work for me -> undefined properties/function).

var container = document.querySelector('#my-element .simplebar-content-wrapper'); container.scrollTo({ top: 500, behavior: "smooth" });
Posted by: Guest on March-03-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language