Skip to content

Instantly share code, notes, and snippets.

@Nikolasgrizli
Forked from agragregra/scroll-next.js
Created March 19, 2018 05:37
Show Gist options
  • Save Nikolasgrizli/f3c22f335d98954da5528eaf8f65ab59 to your computer and use it in GitHub Desktop.
Save Nikolasgrizli/f3c22f335d98954da5528eaf8f65ab59 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