Quick fix: Make sure your target element isn’t hidden or dynamically loaded when you call javascript scrollintoview.
Also, try this:
```js
element.scrollIntoView({
behavior: 'smooth',
block: 'center'
});
```
Sometimes tweaking `block` or `inline` helps. Mobile is... unpredictable.
Also, try this:
```js
element.scrollIntoView({
behavior: 'smooth',
block: 'center'
});
```
Sometimes tweaking `block` or `inline` helps. Mobile is... unpredictable.
