How TO - Scroll Into View
Learn how to scroll into view with JavaScript.
The scrollIntoView() Method
ThescrollIntoView() method scrolls an element into the visible area of the browser window.
Example
Scroll the element with into the visible area of the browser window:
const element = document.getElementById("content");
element.scrollIntoView();
Try it Yourself »element.scrollIntoView();
Learn more about thescrollIntoView() method in our JavaScript Reference.

