Skip to content

Instantly share code, notes, and snippets.

@alexsul2008
Created August 15, 2016 22:51
Show Gist options
  • Save alexsul2008/fea891b108b76e0245412a559c57668d to your computer and use it in GitHub Desktop.
Save alexsul2008/fea891b108b76e0245412a559c57668d to your computer and use it in GitHub Desktop.
jQuery Scroll To Next Section
$(".scroll-next").click(function() {
var cls = $(this).closest(".section").next().offset().top;
$("html, body").animate({scrollTop: cls}, "slow");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment