Skip to content

Instantly share code, notes, and snippets.

@rubensanroman
Created February 29, 2012 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rubensanroman/1940181 to your computer and use it in GitHub Desktop.
Save rubensanroman/1940181 to your computer and use it in GitHub Desktop.
Vertical Scrolling with jQuery
$(function() {
$('ul.nav a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1000);
event.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment