jxycms
7/24/2017 - 12:13 AM

anchor fix header issue

anchor fix header issue

<script type="text/javascript">
// SCROLL ON CLICK
// --------------------------------------------------------------------------
$('.js-scroll').click(function(){
    var headerHeight = 150;

   $('html, body').animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top - headerHeight
    }, 500);
    return false;
});
</script>