T
T
tom222020-06-25 21:48:37
Layout
tom22, 2020-06-25 21:48:37

How can I scroll down the page when I click on a button?

How to scroll down the page on button click

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Demidov, 2020-06-25
@tom22

1. Add an anchor on the page (an element that will scroll when clicked): 2. Add an id to the desired element: 3. Set the styles for smooth scrolling: body {scroll-behavior: smooth;} - does not work in IE and Safari
<a href="#anchor1">Текст</a>
<div id="anchor1">Скролить до сюда</div>

H
hzzzzl, 2020-06-25
@hzzzzl

example for toaster, copy this to dev console

document.querySelector('footer').scrollIntoView({behavior: 'smooth'})

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question