Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created August 5, 2016 09:01
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save agragregra/c454d04d9c65776fbf4faed97a2c6dda to your computer and use it in GitHub Desktop.
Save agragregra/c454d04d9c65776fbf4faed97a2c6dda 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");
});
@Alishamsimourkani
Copy link

Very useful Bro. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment