Skip to content

Instantly share code, notes, and snippets.

@jwebcat
Created May 13, 2014 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwebcat/4d1f95653b3ccab6a90c to your computer and use it in GitHub Desktop.
Save jwebcat/4d1f95653b3ccab6a90c to your computer and use it in GitHub Desktop.
scroll to -- @simonbusborg
// scroll to div
$(function($){
$('a.nav').click(function() {
var $this = $(this),
_href = $this.attr('href'),
dest = $(_href).offset().top;
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: dest}, 400 );
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment