Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created July 16, 2015 19:32
Show Gist options
  • Save ZakharDay/e7459602a3569bee3c20 to your computer and use it in GitHub Desktop.
Save ZakharDay/e7459602a3569bee3c20 to your computer and use it in GitHub Desktop.
$(function() {
$('.scrollTo').each(function() {
$(this).on('click', function(e) {
var scrollTo;
e.preventDefault();
scrollTo = $(this).attr('href');
$('html,body').animate({
scrollTop: $(scrollTo).offset().top - 30
}, 1000);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment