Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created October 8, 2015 10:50
Show Gist options
  • Save ZakharDay/6893c6800294407623ac to your computer and use it in GitHub Desktop.
Save ZakharDay/6893c6800294407623ac 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