Anchor Link Smooth Scroll
-------------------------
A [Pen](https://codepen.io/tak-dcxi/pen/MMjNRv) by [tak-dcxi](https://codepen.io/tak-dcxi) on [CodePen](https://codepen.io).
[License](https://codepen.io/tak-dcxi/pen/MMjNRv/license).
$("a[href^='#']").click(function() {
var speed = 500
var href = $(this).attr('href')
var target = $(href == '#' || href == '' ? 'html' : href)
var position = target.offset().top
$('body,html').animate(
{
scrollTop: position
},
speed,
'swing'
)
return false
})