How can I smoothly scroll to an element using javascript scrollintoview? or Why isn't javascript scro

14 Replies, 1130 Views

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.

Messages In This Thread



Users browsing this thread: 1 Guest(s)