jxycms
7/25/2017 - 1:13 AM

smooth scroll

smooth scroll

$(function () {
    'use strict';
    $('.alphabetscroll').click(function (event) {
        event.preventDefault();
        $('html, body').animate({
            scrollTop: $('[id="' + $.attr(this, 'href').substr(1) + '"]').offset().top
        }, 500);
        return false;
    });
});