I\'m not a programmer, but I use the code below to scroll the page to the top.
How can I adapt it to make a scroll down?
If you want to scroll down to the div (id="div1"). Then you can use this code.
$('html, body').animate({ scrollTop: $("#div1").offset().top }, 1500);