frontend-coder
8/26/2016 - 10:45 PM

jQuery Scroll To Next Section

jQuery Scroll To Next Section

$(".scroll-next").click(function() {
		var cls = $(this).closest(".section").next().offset().top;
		$("html, body").animate({scrollTop: cls}, "slow");
	});