1.0.3 • Published 9 years ago
scroll-spy v1.0.3
Scroll-spy

A light weight scroll spy library in vanilla js.
Demo

Installation
bower
$ bower install scroll-spy --savenpm
$ npm install scroll-spy --saveUsage
scrollSpy.init({
nodeList: document.querySelectorAll('.link') // require
activeClassName: 'active', // optional , default: active
scrollTarget: document // optional , default: document
});nodeList :
- With vanilla js:
document.querySelectorAll('.toc-link') - With jQuery:
$('.toc-link')