I’m trying to make a navigation for my website and would greatly appreciate any assistance. I’d like to use a smooth scroll to the desired div.My website will be one page, so I need the nav link to take them to corresponding div.
thx
Here is my html for my nav:
<html>
<head>
<title></title>
</head>
<body>
<div class="span8" >
<ul class="nav">
<li class="active" id="aboutlink"><a href="#">about</a></li>
<li class="active" id="worklink"><a href="#">work</a></li>
</ul><!--end .nav-->
</div><!--end .span8-->
<div id="about">
<p>blah, blah...</p>
</div>
JQuery:
Sample:
http://jsfiddle.net/7dzK7/1/