I have a link at the top my page which is linked to #here. How can I make the page scroll down to the anchor link with the #here? I've been going to Google and jQuery site, but don't know what to do. The JS code is all I've got.
HTML:
<div class="container">
    <div class="header">
       <a class="link" href="#here">Here</a>
    </div>
    <div class="footer">
       <a id="here"></a>
       <p>Some text...</p>
    </div>
</div>
JS:
$('.link').click(function() {
    $(this).scroll()
});
 
     
     
     
    