Home › Forums › JavaScript › Animate Scroll Links › Reply To: Animate Scroll Links
February 2, 2017 at 2:22 pm
#250881
Participant
This should work, as far as I can tell:
if (target.length) {
if (target[0] == '#top') var gap = 0;
else gap = 100;
$('html, body').animate({
scrollTop: target.offset().top-gap
}, 1000);
}
Needed an edit, I believe…