sydorT
6/19/2017 - 8:39 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");
	});