Skip to content

Instantly share code, notes, and snippets.

@alegut
Created July 4, 2018 06:51
Show Gist options
  • Select an option

  • Save alegut/6e5f28f33af1f559546cb6e4a573e97d to your computer and use it in GitHub Desktop.

Select an option

Save alegut/6e5f28f33af1f559546cb6e4a573e97d to your computer and use it in GitHub Desktop.
Scroll to clicked element
var rt = $(this);
setTimeout(function() {
var ttt = $(rt).offset().top - 80
$('html, body').stop().animate({scrollTop: ttt }, 200);
}, 800);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment