Is it possible to add “active” or “inactive” on a menu that uses scrollTo to indicate if the visitor have selected that menu option or not.
Like:
<ul>
<li><a href="#target1" class="inactive">Target 1</a></li>
<li><a href="#target2" class="active">Target 2</a></li> <-- selected.
<li><a href="target3" class="inactive">Target 3</a></li>
...
</ul>
you can do it like this i have given your ul an id menu
Live Demo OnHover
if you want to do it on click use this
Live Demo OnClick