UNPKG

255 BJavaScriptView Raw
1$().ready(() => {
2 $('#sidebarNav a').each((index, el) => {
3 const href = $(el).attr('href');
4 if (window.location.pathname.match('/' + href)) {
5 $(el).addClass('active')
6 $('#sidebarNav').scrollTop($(el).offset().top - 150)
7 }
8 })
9})
\No newline at end of file