I would like to move the scroll bar to a specific point on the page by clicking the menu of the site.
I could do with anchors.
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 600);
});
});
<a href="#footer" class="scroll">Descer</a>
I'm trying to click on the menu, but I have not been able to do it yet.