Course Recommendations:

How to Scroll into the View

Learn how to use JavaScript to scroll into the view.

scrollIntoView() Method scrollIntoView()

method can scroll an element into the visible area of the browser window.

The instance id="content" Scroll the element into the visible area of the browser window:

const element = document.getElementById("content");
element.scrollIntoView();

Try It Yourself

Related Pages

Reference Manual:JavaScript scrollIntoView() Method