Is there a way to utilize jQuery for scrolling purposes?
For example, transforming this:
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li><a href="#grid" class="scrollto">Grid System</a>
</li>
<li><a href="#tooltips" class="scrollto">Tooltips</a>
</li>
<li><a href="#tables" class="scrollto">Tables</a>
</li>
<li><a href="#carousel" class="scrollto">Carousel</a>
</li>
<li><a href="#thumbnails" class="scrollto">Thumbnails</a>
</li>
<li><a href="#forms" class="scrollto">Forms</a>
</li>
</ul>
Check out the JSFIDDLE
Additionally, is there a way to visually highlight the active menu item (ul li a)?