href scroll to id code example
Example 1: scroll to a section of your page html
html {
scroll-behavior: smooth;
}
Example 2: how to add scroll to div onclick
$("button").click(function() {
$('html,body').animate({
scrollTop: $(".second").offset().top},
'slow');
});
Example 3: how to add scroll to div onclick
.first {
width: 100%;
height: 1000px;
background: #ccc;
}
.second {
width: 100%;
height: 1000px;
background: #999;
}