paulgrenwood
7/28/2017 - 6:07 PM

Smooth Scroll to Anchor

Smooth Scroll to Anchor

$('a[href^="#"').click(function(event){
	 event.preventDefault();
	 var tgt = $(this).attr('href');
	 $('html, body').animate({
		 scrollTop: $(tgt).offset().top
	 }, 1200); 
  });