Skip to content

Instantly share code, notes, and snippets.

@gus3inov
Created May 6, 2017 08:14
Show Gist options
  • Save gus3inov/6c0211de9edb91b6fb8d5511c5964e1c to your computer and use it in GitHub Desktop.
Save gus3inov/6c0211de9edb91b6fb8d5511c5964e1c 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