Advertisement
meetsos

Smooth Scrolling on Anchor Links

Jun 18th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  2.     anchor.addEventListener('click', function (e) {
  3.         e.preventDefault();
  4.  
  5.         document.querySelector(this.getAttribute('href')).scrollIntoView({
  6.             behavior: 'smooth'
  7.         });
  8.     });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement