UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

13 lines (11 loc) 368 B
function scrollToNavItem() { var path = window.location.href.split('/').pop().replace(/\.html/, ''); document.querySelectorAll('nav a').forEach(function(link) { var href = link.attributes.href.value.replace(/\.html/, ''); if (path === href) { link.scrollIntoView({block: 'center'}); return; } }) } scrollToNavItem();