Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Last active August 29, 2015 14:11
Show Gist options
  • Save celsofabri/ce1744e42d7939af3a80 to your computer and use it in GitHub Desktop.
Save celsofabri/ce1744e42d7939af3a80 to your computer and use it in GitHub Desktop.
Menu Scrolling
// Menu Scrolling
$('.menu-list').find('li a').on('click', function () {
var self = $(this),
parent = self.parent(),
index = parent.index();
$('body, html').animate({
scrollTop: $('.section-block').eq(index).offset().top
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment