nav.js 368 B

123456789101112
  1. function scrollToNavItem() {
  2. var path = window.location.href.split('/').pop().replace(/\.html/, '');
  3. document.querySelectorAll('nav a').forEach(function(link) {
  4. var href = link.attributes.href.value.replace(/\.html/, '');
  5. if (path === href) {
  6. link.scrollIntoView({block: 'center'});
  7. return;
  8. }
  9. })
  10. }
  11. scrollToNavItem();