summaryrefslogtreecommitdiffstats
path: root/doc/scroll.js
blob: bad2ef60e18bb784cd7481ffa7b08e94e70eaae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$(document).ready(function() {

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

        var target = this.hash;
        var $target = $(target);

        $('html, body').stop().animate({
        'scrollTop': $target.offset().top
        }, 900, 'swing', function () {
        window.location.hash = target;
        });
    });

});