Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save raphaelkross/a7cbd5c80ab7ab21bfd5096f984a41dd to your computer and use it in GitHub Desktop.
Save raphaelkross/a7cbd5c80ab7ab21bfd5096f984a41dd to your computer and use it in GitHub Desktop.
$('ul.nav li a, .logo a, .featured a, .hero-section a, .prices a').on('click', function(e) {
el = $(this).attr('href');
if (el.charAt(0) == "#") {
$('html, body').animate({
scrollTop: $(el).offset().top - 74
}, 750);
e.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment