How can I smoothly scroll an element into view using JavaScript scroll into view? or What’s the best

18 Replies, 1244 Views

For a quick test, try this in the console:

```js
document.body.style.scrollBehavior = 'smooth';
```

If that works, then it’s definitely a browser support thing.

Otherwise, maybe your element is hidden or not in the DOM yet? Double-check with `console.log(element)` before scrolling.

Messages In This Thread



Users browsing this thread: 1 Guest(s)