[b]"How to Smoothly scrollIntoView JavaScript Without Jumping?"[/b] or [b]"Why Isn't scrollIntoView JavaScript Wor

20 Replies, 1270 Views

Pro tip: If scrollIntoView JavaScript isn’t playing nice, try `scrollTo` with some math.

Like:
```js
const y = element.getBoundingClientRect().top + window.scrollY;
window.scrollTo({ top: y, behavior: 'smooth' });
```

Works better for me when the native method acts up.

Messages In This Thread



Users browsing this thread: 1 Guest(s)