seantrant
11/30/2016 - 12:44 PM

Slow scroll to specific element + offset

Slow scroll to specific element + offset

// slow scroll to error if validation problem
$(document).ready(function(){
  $(function() {
      // $('body').scrollTop( $(".help-block").offset().top+20 );
      $('html, body').animate({scrollTop:$('.help-block').position().top + (-200)}, 'slow');
  });
});