scroll to href code example
Example 1: scroll jquery to anchor
$('html,body').animate({ scrollTop: $("#anchor").offset().top }, 'slow');
Example 2: scroll to a div using href
<a href="#google"></a>
<div id="google"></div>
Example 3: scroll to section href
<a href="#google"></a>
<div id="google"></div>