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