Im trying to set a div that I want to scroll to when I click a div in my menu. The problem is that the scroll to the div, is not scrolling to the div that I have in my code, It always scroll to something else on my page, strange. Im using the code bellow:
$(".dns-anchor").click(function() {
$('html, body').animate({
scrollTop: $("#dns-scroll").offset().top
}, 2000);
});
ID #dns-scroll is the div that I want to scroll to.