panicbus
4/8/2014 - 4:25 PM

JavaScript scrolldown

JavaScript scrolldown

 $('a').click(function(){
    $('html, body').animate({
      scrollTop: $( $(this).attr('href') ).offset().top - 100 //scrolls to anchor tag in body minus 100 px
    }, 'slow');
    return false;
  });