I am encountering an issue with Scrollspy. I am able to get the links to point to the correct section, but it is not applying an active class to the currently "selected" li element. You can see the issue on my beta website at: http://beta.joshuabock.com/resume.html. I have looked around for a solution but so far no luck. Any suggestions on how to resolve this issue?
The basic code structure is as follows:
<aside>
<nav id="nav-list>
<ul class="nav nav-list">
<li>Menu Items</li>
</ul>
</nav>
</aside>
<article data-spy="scroll" data-target="#nav-list" data-offset="0">
<section>Main Content</section>
</article>