window.scrollBy And window.scrollTo is not working in edge..We used lazy loader from bakend for little scroll i used window.scroll

45 Views Asked by At
Scrollnavar() {
            window.onload = function () {
                document.getElementById('temple').addEventListener('click', function () {
                    window.scrollBy(0, 1);
                });
                document.getElementById('education').addEventListener('click', function () {
                    window.scrollBy(0, 2);
                });
            },
        },

<infinite-loading @distance="1" @infinite="getFilter"> this is the vue loader we used

I tried to add window.scrollTo but both are not working hp laptop.. why..?

0

There are 0 best solutions below