Created
August 5, 2016 09:01
-
-
Save agragregra/c454d04d9c65776fbf4faed97a2c6dda to your computer and use it in GitHub Desktop.
jQuery Scroll To Next Section
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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
Very useful Bro. Thanks