Skip to content

Instantly share code, notes, and snippets.

@tpatch
Last active October 22, 2015 15:14
Show Gist options
  • Save tpatch/7b11fc509d3f237f6e18 to your computer and use it in GitHub Desktop.
Save tpatch/7b11fc509d3f237f6e18 to your computer and use it in GitHub Desktop.
nav: function () {
// Uses href attribute containing a section ID;
// Example: <li class="slide-to"><a href="#learnmore">Learn More</a></li>
$('.slide-to').on('click', function(e) {
e.preventDefault();
var sectionId = $(this).children('a').attr('href');
$('html, body').animate({scrollTop:$(".section" + sectionId).position().top - 98}, 'slow');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment