Skip to content

Instantly share code, notes, and snippets.

@Hatteron
Forked from agragregra/scroll-next.js
Created July 8, 2017 16:02
Show Gist options
  • Save Hatteron/08d3a8c8a21feb99591e3221b4ac2eff to your computer and use it in GitHub Desktop.
Save Hatteron/08d3a8c8a21feb99591e3221b4ac2eff 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