Scroll to an element smoothly with jQuery

$('a[href^="#"]').on('click', function (e) {
    var target = $(this.hash);

    if (!target.length) { return; }

    e.preventDefault();
    $('html, body').animate({ scrollTop: target.offset().top - 60 }, 400);
});