Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Animate Scroll Links Reply To: Animate Scroll Links

#250881
Shikkediel
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…