summaryrefslogtreecommitdiff
path: root/js/frontpage.js
blob: e8092258eedd56955cd4883c8d84911d2d8e5460 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(function() {
  $('a[href^="#"]').on('click', function(e) {
    var target = $(this.getAttribute('href'));
    if (target.length) {
      e.preventDefault();
      $('html, body').stop().animate({
        scrollTop: target.offset().top
      }, 500);
    }
  });
});