Search code examples
javascriptmobile

window.scrollTo is not working in mobile phones


on my mobile view of my webpage i can scroll in vertical and horizontal direction, but this starts always at the top left corner. Now i want to set the viewport to my custom position with window.scrollTo or something equivalent. window.scroll seem just to work for desktop browser.

any idea how i could solve that?


Solution

  • I got it finally working.

    i had to use additionally the setTimeout function

    setTimeout(() => window.scrollTo(x,y), 100);