I am building a webpage that is continuous scrolling, with a navigation that should jump to a different place on the page. I'm trying to follow this example, and implement a jQuery smooth scrolling effect. The HTML is working fine-- The links take you to a different spot on the page when clicked, but the jQuery scrolling effect is not working.
Here's the important part of the html:
<ul>
<li><a href="#"><h1>work</h1></a></li>
<ul class="nav">
<li><a href="#section1"><p class="nav_p">project1</p></a></li>
<li><a href="#section2"><p>project2</p></a></li>
<li><a href="#section3"><p>project3</p></a></li>
<li><a href="#section4"><p>project4</p></a></li>
<li><a href="#section5"><p>project5</p></a></li>
<li><a href="#section6"><p>project6</p></a></li>
<li><a href="#section7"><p>project7</p></a></li>
<li><a href="#section8"><p>project8</p></a></li>
</ul>
<li><a href="#"><h1>about</h1></a></li>
<li><a href="#"><h1>contact</h1></a></li>
</ul>
And this is the javascript so far: (it is exactly the same as what's on the tutorial webpage linked up top)
$(function() {
$('ul.nav a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
event.preventDefault();
});
});
Anyone have any ideas as to why this isn't working for me? Thank you!
I just removed 'easeInOutExpo':