$()

in MonoToMicroUI/js/freelancer.js [5:19]


  $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
    if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
      if (target.length) {
        anime({
          targets: 'html, body',
          scrollTop: target.offset().top - 72,
          duration: 1000,
          easing: 'easeInOutExpo'
        });
        return false;
      }
    }
  });