izbagov
12/1/2018 - 12:52 PM

Scroll to ID

$("a[href^='#']").click(function(e) {
	e.preventDefault();
	
	var position = $($(this).attr("href")).offset().top;

	$("body, html").animate({
		scrollTop: position
	} 500 );
});