window.scrollTo not scrolling to provided id
问题 I am working on a single document file. I want to scroll to the desired section with id="projectpage" when an anchor with id="about" is clicked. <a class="nav-link page-scroll" href="" id="about">About Me</a> <section id="aboutpage"> I tried using $('a#about').click(function(){ $(window).scrollTo(0, document.getElementById('projectpage').offsetTop); }); or even $('#about').click(function(){ $(window).scrollTo(0, document.getElementById('projectpage').offsetTop); }); but nothing works. When I