Al hacer clic en desplazarse al elemento

$("button").click(function() {
    $('html,body').animate({
        scrollTop: $(".second").offset().top},
        'slow');
});
Weary Wildebeest